Advertisement
Skater1405

Untitled

Jan 25th, 2012
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 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()', 35); //in milliseconds
  10. }
  11. </script>
  12. </head>
  13.  
  14. <body onLoad='toggleBgColor();'>
  15. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement