JS countdown
weet iemand hoe dit komt?
alvast bedankt!
zo telt hij niets...hij geeft enkel 60 (als ik bij var tijd 60 als waarde meegeef)
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>JS Count Down</title>
<script type="text/javascript">
var milisec=0
var seconds=30
document.counter.d2.value='30'
function display(){
if (milisec<=0){
milisec=9
seconds-=1
}
if (seconds<=-1){
milisec=0
seconds+=1
}
else
milisec-=1
document.formvoorbeeld.vbcount.value = seconds+"."+milisec
setTimeout("display()",100)
}
display()
</script>
</head>
<body>
<form action="" method="post" name="formvoorbeeld">
<input type="button" onclick="display()" value="Start" />
<input name="vbcount" type="text" style="border: 1px solid #222; color: #222; background: #EEE; padding: 2px; font-family: Trebuchet MS, Arial, sans-serif; font-size: 16px; width: 40px; text-align: center;" value="0.00" />
</form>
</body>
</html>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>JS Count Down</title>
<script type="text/javascript">
var milisec=0
var seconds=30
document.counter.d2.value='30'
function display(){
if (milisec<=0){
milisec=9
seconds-=1
}
if (seconds<=-1){
milisec=0
seconds+=1
}
else
milisec-=1
document.formvoorbeeld.vbcount.value = seconds+"."+milisec
setTimeout("display()",100)
}
display()
</script>
</head>
<body>
<form action="" method="post" name="formvoorbeeld">
<input type="button" onclick="display()" value="Start" />
<input name="vbcount" type="text" style="border: 1px solid #222; color: #222; background: #EEE; padding: 2px; font-family: Trebuchet MS, Arial, sans-serif; font-size: 16px; width: 40px; text-align: center;" value="0.00" />
</form>
</body>
</html>
vb online: http://paradox-productions.net/upload-project/uploads/7e05295a468401ec66e8c337855022ed.html
dat werkt inderdaad maar waarom werkt de mijne niet?
Gewijzigd op 01/01/1970 01:00:00 door Tikkes C
werkt ook niet..
daar had je toch Interval voor ?
setTimeout is eenmalig. setInterval blijft herhalen. Beiden kun je een functie in gebruiken, zover ik weet.