Created
April 5, 2012 16:20
-
-
Save h4/2312293 to your computer and use it in GitHub Desktop.
Случайны цвет фона
This file contains hidden or 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>Случайный цвет фона</title> | |
<script> | |
var colors = ['red', 'green', 'blue']; | |
function init() { | |
var num = Math.floor(Math.random() * colors.length); | |
document.body.style.background = colors[num]; | |
} | |
window.onload = init; | |
</script> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment