themeforest
tıklayınca artan Sayın
TIklandIkca Artan SayI Dizisi
Ön İzleme:Click the button to see the counter increase.
Close the browser tab (or window), and try again, and the counter is reset.
<!DOCTYPE html>
<html>
<body>
<p id="demo">Click the button to get your coordinates:</p>
<button onclick="getLocation()">Try It</button>
<script>
var x=document.getElementById("demo");
function getLocation()
{
if (navigator.geolocation)
{
navigator.geolocation.getCurrentPosition(showPosition);
}
else{x.innerHTML="Geolocation is not supported by this browser.";}
}
function showPosition(position)
{
x.innerHTML="Latitude: " + position.coords.latitude +
"<br />Longitude: " + position.coords.longitude;
}
</script>
</body>
</html>
HTML5 Tıklayınca Artan Sayı
Bu Uygulamanın Üzerinde Değişiklik Yaparsanız.Daha Güzel Kodları Elde Edebilirsiniz.Örneğin Buttonu Tıklayınca Yazı Yerine Resim Değiştirmek Gibi Örneğin Tıklayınca
Slayt Resim Yapabilirsiniz.
Bugün 2 ziyaretçi (25 klik) kişi burdaydı!