Guest User

Untitled

a guest
Nov 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <head>
  2. <meta charset="UTF-8">
  3. <title class="timerForTitle">Title</title>
  4. </head>
  5. <body>
  6.  
  7. <script>
  8. if(!sessionStorage.timerForTitle){
  9. sessionStorage.timerForTitle = 30;
  10. }
  11.  
  12. var timer = setInterval(function () {
  13. var count = Number(sessionStorage.timerForTitle);
  14. if(--count >= 0){
  15. sessionStorage.timerForTitle = count;
  16. document.querySelector('.timerForTitle').innerHTML = 'Title '+count;
  17. }else{
  18. document.querySelector('.timerForTitle').innerHTML = 'Title finish';
  19. clearInterval(timer);
  20. }
  21. },1000);
  22.  
  23. </script>
  24.  
  25.  
  26. </body>
  27. </html>
Add Comment
Please, Sign In to add comment