jet:working_with_timers
setTimeout
setTimeout(<fonction>,<délai>) : appelle la <fonction> au bout de <délai>.
setInterval
setInterval(<fonction>,<délai>) : appelle la <fonction> tous les <délai>.
clearInterval
var intervalHandle = setInterval(<function>,<délai>); // setInterval renvoi une référence; clearInterval(intervalHandle); // qui nous permet de stopper la boucle.
jet/working_with_timers.txt · Last modified: 2016/01/21 12:43 by leo