DHTML - Cambia el Color de Fondo Onload

 
Vista:
Imágen de perfil de ScriptShow
Val: 16
Ha mantenido su posición en DHTML (en relación al último mes)
Gráfica de DHTML

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:

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
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
Imágen de perfil de ScriptShow
Val: 16
Ha mantenido su posición en DHTML (en relación al último mes)
Gráfica de DHTML

Cambia el Color de Fondo Onload

Publicado por ScriptShow (24 intervenciones) el 25/06/2017 18:51:00
Solucionado un pequeño error de compatibilidad.

El código quedaría de la siguiente manera:

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>

Por si es de interés.

Un saludo
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
1
Comentar