当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript RGB 函数

VBScript
VBScript 介绍
如何使用 VBScript
VBScript 放置
VBScript 变量
VBScript 程序
VBScript 条件语句
VBScript 循环声明
VBScript 摘要
VBScript 实例
VBScript 函数
VBScript 关键字

VBScript RGB 函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 198 ::
收藏到网摘: n/a

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 间的整数,代表颜色中的蓝色成分。

实例1

document.write(rgb(255,0,0))
输出:
255

实例 2

document.write(rgb(255,30,30))
输出:
1974015

评论 (0) All

登陆 | 还没注册?