Advertisement
Fhernd

W3S5C2Ex2-Stop-Timer.html

Nov 20th, 2016
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Clear a Timer</title>
  5.     <meta charset="utf-8" />
  6.     <script>
  7.         var theTimer, xPosition = 0, theImage;
  8.  
  9.         function doTimer() {
  10.             theImage = document.getElementById("courseraLogo");
  11.             xPosition = xPosition + 1;
  12.             theImage.style.left = xPosition + "px";
  13.         }
  14.     </script>
  15. </head>
  16. <body onload="theTimer = setInterval(doTimer, 50)">
  17.     <img src="../img/coursera.png" id="courseraLogo"
  18.         style="position:absolute; left:0">
  19.     <button onclick="clearTimeout(theTimer);">
  20.         Stop!
  21.     </button>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement