-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Color
mozhi.gyy edited this page Aug 21, 2015
·
6 revisions
- Random.color()
随机生成一个有吸引力的颜色,格式为 '#RRGGBB'。
Random.color()
// => "#3538B2"
- Random.hex()
随机生成一个有吸引力的颜色,格式为 '#RRGGBB'。
Random.hex()
// => "#3538B2"
- Random.rgb()
随机生成一个有吸引力的颜色,格式为 'rgb(r, g, b)'。
Random.rgb()
// => "rgb(242, 198, 121)"
- Random.rgba()
随机生成一个有吸引力的颜色,格式为 'rgba(r, g, b, a)'。
Random.rgba()
// => "rgba(242, 198, 121, 0.13)"
- Random.hsl()
随机生成一个有吸引力的颜色,格式为 'hsl(h, s, l)'。
Random.hsl()
// => "hsl(345, 82, 71)"
Mock.js 最初的灵感来自 Elijah Manor 的博文 Mocking Introduction,语法参考了 mennovanslooten/mockJSON,随机数据参考了 victorquinn/chancejs。