JS生成随机颜色(rgb)
Posted 铜丝儿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS生成随机颜色(rgb)相关的知识,希望对你有一定的参考价值。
/*随机获取颜色*/
function getRandomColor() {
var r = Math.floor(Math.random() * 256);
var g = Math.floor(Math.random() * 256);
var b = Math.floor(Math.random() * 256);
return "rgb(" + r + ‘,‘ + g + ‘,‘ + b + ")";
//return ‘#‘ + Math.floor(Math.random() * 0xffffff).toString(16);
}
以上是关于JS生成随机颜色(rgb)的主要内容,如果未能解决你的问题,请参考以下文章