-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
38 lines (37 loc) · 1.21 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<title>Ejemplo del control color de HTML5 - w ww.lewebmonster.com</title>
<link rel="stylesheet" type="text/css" href="css/color.css">
</head>
<body>
<div id="divContenedor">
<div id="divInfo">
<h1>El control "color" de HTML5</h1>
<p>
Ejemplo por Cali Rojas -
<a href="http://www.lewebmonster.com">www.lewebmonster.com</a>
</p>
</div>
<div id="divSelector">
<p><strong>- seleccione un color haciendo clic -</strong></p>
<input type="color" id="clrColor" value="#ff006f">
<p><strong>- el color seleccionado es -</strong></p>
</div>
<div id="divColor">#ff006f</div>
</div>
<script>
//escuchamos el evento change del control
document.getElementById('clrColor').addEventListener('change',function(){
//obtenemos el color seleccionado por el usuario
var strColorSeleccionado=this.value;
//seleccionamos la capa que vamos a cambiar de color
var objCapa=document.getElementById('divColor');
//le colocamos el nuevo color de fondo a la capa
objCapa.style.backgroundColor=strColorSeleccionado;
//mostramos el codigo del color seleccionado
objCapa.innerHTML=strColorSeleccionado;
});
</script>
</body>
</html>