Version compl�te: jsB@nk » Heure » Compteur » Count up onmouseover
URL: https://www.javascriptbank.com/count-up-onmouseover.html
Cet JavaScript compte jusqu'à heure dans un textbox lorsque vous déplacez la souris sur image.
Version compl�te: jsB@nk » Heure » Compteur » Count up onmouseover
URL: https://www.javascriptbank.com/count-up-onmouseover.html
<SCRIPT>function CountOn(){document.forms[0].counter.value++if(document.forms[0].counter.value>1000000)document.forms[0].counter.value=0Cont=setTimeout("CountOn()",100)}function StopCount(){clearTimeout(Cont)}</SCRIPT><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->
<A onmouseover=CountOn(1) onmouseout=StopCount(0) href="javascript:self.close()"><IMG src="../image/logojs.gif" width="160" height="50"></A> <BR>Touch the bell to count the time ... <BR><FORM><INPUT readOnly name=counter size="20"> </FORM><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->