Created
April 27, 2019 21:09
-
-
Save vpontis/ee08573db37d28008586311488cf8190 to your computer and use it in GitHub Desktop.
Strobe Light
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html><head> | |
<title>Strobe</title> | |
<script> | |
function toggleBgColor() | |
{ | |
document.bgColor = document.bgColor == '#ffffff' ? '#000000' : '#ffffff'; | |
setTimeout('toggleBgColor()', 75); //in milliseconds | |
} | |
</script> | |
</head> | |
<body onLoad='toggleBgColor();'> | |
</body></html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment