La función d3.rgb() en D3.js se usa para devolver el valor RGB del color CSS especificado.
Sintaxis:
d3.rgb(color);
Parámetros: esta función acepta un solo color de parámetro que se utiliza para especificar el color CSS.
Valor de retorno: esta función devuelve el valor RGB del color CSS dado.
Los siguientes programas ilustran la función d3.rgb() en D3.js:
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title>d3.rgb() function</title> <script src='https://d3js.org/d3.v4.min.js'></script> </head> <body> <script> // Calling the d3.rgb() function function // with some parameters var color1 = d3.rgb("red"); var color2 = d3.rgb("green"); var color3 = d3.rgb("blue"); // Getting the RGB values console.log(color1); console.log(color2); console.log(color3); </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>d3.rgb() function</title> <script src='https://d3js.org/d3.v4.min.js'></script> </head> <body> <script> // Calling the d3.rgb() function function // without any parameters var color = d3.rgb(); // Getting the RGB values console.log(color); </script> </body> </html>
Producción:
{"r":null, "g":null, "b":null, "opacity":1}
Referencia: https://devdocs.io/d3~5/d3-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