Skip to content

Instantly share code, notes, and snippets.

@h4
Created April 5, 2012 16:20
Show Gist options
  • Save h4/2312293 to your computer and use it in GitHub Desktop.
Save h4/2312293 to your computer and use it in GitHub Desktop.
Случайны цвет фона
<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