当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript RGB 函数
The RGB function returns a number that represents an RGB color value.
RGB 函数可返回代表 RGB 颜色值的整数
RGB(red,green,blue) |
参数 | 描述 |
---|---|
red | Required. A number from 0 to 255, inclusive, representing the red component of the color 必选项。0 到 255 间的整数,代表颜色中的红色成分。 |
green | Required. A number from 0 to 255, inclusive, representing the green component of the color 必选项。0 到 255 间的整数,代表颜色中的绿色成分。 |
blue | Required. A number from 0 to 255, inclusive, representing the blue component of the color 必选项。0 到 255 间的整数,代表颜色中的蓝色成分。 |
document.write(rgb(255,0,0)) 输出: 255 |
document.write(rgb(255,30,30)) 输出: 1974015 |