Advertisement
Guest User

Untitled

a guest
May 25th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var secondsUntilItGoesOff = 300;
  2. setTimeout(
  3.   function() {
  4.     var sound = new Audio('https://s3-ap-northeast-1.amazonaws.com/office-prank/lol.mp3');
  5.     sound.loop = true;
  6.  
  7.     sound.play();
  8.   },
  9.   secondsUntilItGoesOff * 1000
  10. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement