Advertisement
MatthijsFontys

Epilepsie script

Apr 15th, 2019
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let colors = ['red', 'green', 'blue', 'yellow', 'purple', 'black', 'white', 'orange'];
  2. let counter = 0;
  3.  
  4. function changeBackgroundColor(){
  5.     document.querySelector('body').style.backgroundColor = colors[counter];
  6.     counter ++;
  7.     if(counter >= colors.length-1)
  8.         counter = 0;
  9. }
  10.  
  11. setInterval(changeBackgroundColor, 10);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement