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);
}

 

posted @ 2020-04-13 11:49  铜丝儿  阅读(2011)  评论(0)    收藏  举报