La función d3.hsl() en D3.js se usa para construir un nuevo color HSL y devuelve las propiedades HSL del color especificado tomado como parámetro de la función.
Sintaxis:
d3.hsl(h, s, l, opacity)
o
d3.hsl(color)
Parámetros: Esta función acepta algunos parámetros como se mencionó anteriormente y se describe a continuación:
- h: Se utiliza para establecer el valor del matiz.
- s: Se utiliza para establecer el valor de saturación.
- l: Se utiliza para establecer el valor de luminosidad.
- opacidad: Se utiliza para establecer la opacidad/transparencia.
- color: se utiliza para establecer el nombre del color o el código hexadecimal.
Valor devuelto: esta función devuelve las propiedades HSL del color CSS especificado tomado como parámetro de la función.
Los siguientes programas ilustran la función d3.hsl() en D3.js:
Ejemplo 1:
javascript
<!DOCTYPE html> <html> <head> <title> D3.js | d3.hsl() Function </title> <script src= 'https://d3js.org/d3.v4.min.js'> </script> </head> <body> <script> // Calling the d3.hsl() function // with some parameters var color1 = d3.hsl("red"); var color2 = d3.hsl("green"); var color3 = d3.hsl("blue"); // Getting the HSL properties console.log(color1); console.log(color2); console.log(color3); </script> </body> </html>
Producción:
{"h":0, "s":1, "l":0.5, "opacity":1} {"h":120, "s":1, "l":0.25098039215686274, "opacity":1} {"h":240, "s":1, "l":0.5, "opacity":1}
Ejemplo 2:
javascript
<!DOCTYPE html> <html> <head> <title> D3.js | d3.hsl() Function </title> <script src= 'https://d3js.org/d3.v4.min.js'> </script> </head> <body> <script> // Calling the d3.hsl() function // without any parameters var color = d3.hsl(); // Getting the HSL values console.log(color); </script> </body> </html>
Producción:
{"h":null, "s":null, "l":null, "opacity":1}
Referencia: https://devdocs.io/d3~5/d3-color#hsl
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA