Advertisement
Guest User

Untitled

a guest
Jul 30th, 2020
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let interval;
  2.  
  3. function myTimer() {
  4.   console.log('1');
  5. }
  6.  
  7. window.addEventListener('blur', function () {
  8.   interval = setInterval(myTimer, 200);
  9. })
  10.  
  11. window.addEventListener('focus', function () {
  12.   clearInterval(interval);
  13. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement