La función d3.lab() en D3.js se usa para construir un nuevo color Lab y devuelve las propiedades ‘l’, ‘a’ y ‘b’ del color especificado tomado como parámetro de la función.
Sintaxis:
d3.lab(color);
Parámetros: esta función acepta un solo color de parámetro que es el color CSS especificado.
Valor devuelto: esta función devuelve las propiedades ‘l’, ‘a’ y ‘b’ del color CSS especificado tomado como parámetro de la función.
Los siguientes programas ilustran la función d3.lab() en D3.js:
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title>d3.lab() function</title> <script src='https://d3js.org/d3.v4.min.js'></script> </head> <body> <script> // Calling the d3.lab() function // with some parameters var color1 = d3.lab("red"); var color2 = d3.lab("green"); var color3 = d3.lab("blue"); // Getting the LAB properties console.log(color1); console.log(color2); console.log(color3); </script> </body> </html>
Producción:
{"l":53.24079414130722, "a":80.09245959641109, "b":67.20319651585301, "opacity":1} {"l":46.22743146876261, "a":-51.69849552989111, "b":49.8968460010561, "opacity":1} {"l":32.297010932850725, "a":79.18751984512224, "b":-107.8601617541481, "opacity":1}
Ejemplo 2:
<!DOCTYPE html> <html> <head> <title>d3.lab() function</title> <script src='https://d3js.org/d3.v4.min.js'></script> </head> <body> <script> // Calling the d3.lab() function // without any parameters var color = d3.lab(); // Getting the LAB values console.log(color); </script> </body> </html>
Producción:
{"l":null, "a":null, "b":null, "opacity":1}
Referencia: https://devdocs.io/d3~5/d3-color#lab
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