Skip to content

Instantly share code, notes, and snippets.

@vpontis
Created April 27, 2019 21:09
Embed
What would you like to do?
Strobe Light
<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