En este artículo, crearemos un generador de color RGB utilizando HTML, CSS y JavaScript. Usando el generador de color RGB, podemos construir todos los colores a partir de la combinación de colores rojo, verde y azul. Cada color está representado por el rango de números decimales de 0 a 255 (256 niveles para cada color). Entonces, el número total de colores disponibles es 256 x 256 x 256, o 16,777,216 colores posibles.
Acercarse:
- Cree un control deslizante de rango de tipo de entrada para cada color.
- Establezca el valor mínimo y máximo del control deslizante en 0 y 255 respectivamente.
- Obtenga el valor de cada color y guárdelo en las tres variables.
- Use la función rgb() para generar el color dando el valor de tres colores como parámetros.
index.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>RGB Colour Generator</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <h1>RGB Colour Generator</h1> <div class="main"> Result:<input type="text" id="box" value="rgb(255,255,255)"> <!-- Range slider for red colour --> Red:<input type="range" id="red" value="255" min="0" max="255"> <!-- Range slider for green colour --> Green:<input type="range" id="green" value="255" min="0" max="255"> <!-- Range slider for blue colour --> Blue:<input type="range" id="blue" value="255" min="0" max="255"> </div> <script src="script.js"></script> </body> </html>
style.css
body { margin: 0; padding: 0; display: grid; place-items: center; height: 100vh; } .main { height: 400px; width: 250px; background: #333; border-radius: 10px; display: grid; place-items: center; color: #fff; font-family: verdana; } #box { height: 40px; width: 80%; border: none; outline: none; outline: none; border-radius: 50px; text-align: center; } /* CSS property for slider */ input[type="range"] { -webkit-appearance: none; height: 10px; width: 80%; border-radius: 50px; outline: none; } /* CSS property for slider thumb */ input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; height: 25px; width: 25px; background: #fff; border-radius: 50%; cursor: pointer; } .main #red { background: linear-gradient(90deg, #000, red); } .main #green { background: linear-gradient(90deg, #000, green); } .main #blue { background: linear-gradient(90deg, #000, blue); }
script.js
function myColour() { // Get the value of red color var red = document.getElementById('red').value; // Get the value of green color var green = document.getElementById('green').value; // Get the value of blue color var blue = document.getElementById('blue').value; // rgb() function is used to create the color // from red, green and blue values var colour = 'rgb(' + red + ',' + green + ',' + blue + ')'; // Change background colour with the // color obtained by rgb function document.body.style.backgroundColor = colour; // Set the obtained rgb() colour code in the // input text field having id=box document.getElementById('box').value = colour; } // On changing red range slider myColour() // function is called document.getElementById('red') .addEventListener('input', myColour); // On changing green range slider myColour() // function is called document.getElementById('green') .addEventListener('input', myColour); // On changing blue range slider myColour() // function is called document.getElementById('blue') .addEventListener('input', myColour);
Producción:
Publicación traducida automáticamente
Artículo escrito por poojavichare1810 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA