Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- let interval;
- function myTimer() {
- console.log('1');
- }
- window.addEventListener('blur', function () {
- interval = setInterval(myTimer, 200);
- })
- window.addEventListener('focus', function () {
- clearInterval(interval);
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement