jhylands

Strobe

May 7th, 2013
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.36 KB | None | 0 0
  1. <html><head>
  2. <title>Strobe</title>
  3.  
  4. <script>
  5. <!-- If you're extremely unlucky, you may break your equipment, or worse, have a seizure -->
  6. function toggleBgColor()
  7. {
  8.   document.bgColor = document.bgColor == '#ffffff' ? '#000000' : '#ffffff';
  9.   setTimeout('toggleBgColor()', 200); //in milliseconds
  10. }
  11. </script>
  12. </head>
  13.  
  14. <body onLoad='toggleBgColor();'>
  15. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment