Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5. <meta charset="utf-8" />
  6. <title>JS</title>
  7.  
  8. <script>
  9.  
  10. var seconds=10;
  11. var s;
  12. var timer;
  13.  
  14. function decreaseSeconds() {
  15. seconds--;
  16. s.innerHTML=seconds;
  17. }
  18.  
  19. timer = setInterval(decreaseSeconds, 1000);
  20.  
  21. function setup() {
  22. s=document.getElementById("seconds");
  23. s.innerHTML=90;
  24. s.innerHTML=seconds;
  25. }
  26.  
  27. </script>
  28.  
  29. </head>
  30.  
  31. <body onload="setup()">
  32.  
  33. <h1>Quiz on line</h1>
  34.  
  35. <p>Mancano <em id="seconds">90</em> secondi al termine del quiz.</p>
  36.  
  37. </body>
  38.  
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement