Cambia el Color de Fondo Onload
Publicado por ScriptShow (24 intervenciones) el 25/06/2017 16:46:57
Sencillo Script que cambia el color del fondo cuando entras y/o recargas la página.
Aquí está el código completo:
Espero sea útil.
Un saludo
Aquí está el código completo:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<style>
body{margin:0;background:#000000}
</style>
</head>
<body>
<script>
onload=function()
{
document.body.style="background:rgb(" + Math.floor(Math.random() * 255) + ", " + Math.floor(Math.random() * 255) + ", " + Math.floor(Math.random() * 255) + ")";
}
</script>
</body>
</html>
Espero sea útil.
Un saludo
Valora esta pregunta
0