La función d3.cubehelix() en D3.js se usa para construir un nuevo color Cubehelix y devuelve las propiedades HSL del color especificado tomado como parámetro de la función.
Sintaxis:
d3.cubehelix(color);
Parámetros: esta función acepta un solo color de parámetro que especifica el color CSS.
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.cubehelix() en D3.js:
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title>d3.cubehelix() function</title> <script src='https://d3js.org/d3.v4.min.js'></script> </head> <body> <script> // Calling the d3.cubehelix() function function // with some parameters var color1 = d3.cubehelix("red"); var color2 = d3.cubehelix("green"); var color3 = d3.cubehelix("blue"); // Getting the HSL properties console.log(color1); console.log(color2); console.log(color3); </script> </body> </html>
Producción:
{"h":351.8102617708421, "s":1.9488976453722686, "l":0.2999994453152424, "opacity":1} {"h":109.95916521883123, "s":1.1193720244160954, "l":0.29615736727228126, "opacity":1} {"h":236.94217167732103, "s":4.614386868039719, "l":0.10999954957200976, "opacity":1}
Ejemplo 2:
<!DOCTYPE html> <html> <head> <title>d3.cubehelix() function</title> <script src='https://d3js.org/d3.v4.min.js'></script> </head> <body> <script> // Calling the d3.cubehelix() function function // without any parameters var color = d3.cubehelix(); // 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#cubehelix
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