Advertisement
_Tobias

Untitled

Dec 23rd, 2013
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var bpm = 140;
  2. setInterval(function() {
  3.     if(document.body.style.backgroundColor == 'black') {
  4.         document.body.style.backgroundColor = 'green';
  5.     }
  6.     else {
  7.         document.body.style.backgroundColor = 'black';
  8.     }
  9. }, 1000/(bpm/60))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement