La función color.rgb() en D3.js se usa para devolver el equivalente RGB del color especificado.
Sintaxis:
color.rgb()
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve el equivalente RGB del color especificado.
Los siguientes programas ilustran la función color.rgb() en D3.js:
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title>color.rgb() function</title> <script src='https://d3js.org/d3.v4.min.js'></script> </head> <body> <script> // Calling the d3.color() function function // with some parameters var color1 = d3.color("red"); var color2 = d3.color("green"); var color3 = d3.color("blue"); // Calling the color.rgb() function var A = color1.rgb(); var B = color2.rgb(); var C = color3.rgb(); // Getting the RGB equivalent of the specified color console.log(A); console.log(B); console.log(C); </script> </body> </html>
Producción:
{"r":255, "g":0, "b":0, "opacity":1} {"r":0, "g":128, "b":0, "opacity":1} {"r":0, "g":0, "b":255, "opacity":1}
Ejemplo 2:
<!DOCTYPE html> <html> <head> <title>color.rgb() function</title> <script src='https://d3js.org/d3.v4.min.js'></script> </head> <body> <script> // Calling the d3.rgb() function // without any parameters var color1 = d3.rgb(); // Calling the color.rgb() function var A = color1.rgb(); // Getting the RGB equivalent of the specified color console.log(A); </script> </body> </html>
Producción:
{"r":null, "g":null, "b":null, "opacity":1}
Referencia: https://devdocs.io/d3~5/d3-color#color_rgb
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