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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
<html>
<head>
<title></title>
<script type="text/javascript">
<!--
var timer = null;
var c=0;
var delai = 100;
function compteur()
{
document.getElementById("cpt").innerHTML = c;
c++;
}
function mouseDown(ev)
{
//c = 0;
if (ev.button==0 && timer==null)
timer = setInterval("compteur()",delai);
}
function mouseUp(ev)
{
if (ev.button==0)
{
if (timer!=null)
{
clearInterval(timer);
timer = null;
}
}
}
//-->
</script>
</head>
<body>
<span style="cursor: pointer" onmousedown="mouseDown(event)" onmouseup="mouseUp(event)">cliquez ici</span>
<div id="cpt"></div>
</body>
</html> |