10 Ekim 2014, 03:54
|
#1 |
Çevrimdışı
Kullanıcıların profil bilgileri misafirlere kapatılmıştır.
| Geriye doğru sayma
PHP Kod: Kodu kopyalamak için üzerine çift tıklayın!
<html>
<head>
<title>Test</title>
<script type="text/javascript">
var newCount;
function timer(position,count)
{
if (position == 'start') {
document.getElementById("timer").innerHTML=count
newCount = count - 1
setTimeout("timer('go',newCount)",1000)
}
if (position == 'go') {
document.getElementById("timer").innerHTML=count
newCount--;
setTimeout("timer('go',newCount)",1000)
}
}
</script>
</head>
<body onload="timer('start',10);">
<div id="timer" />
</body>
</html>
__________________ |
| |