码迷,mamicode.com
首页 > Web开发 > 详细

JS生成随机颜色(rgb)

时间:2020-04-13 12:27:50      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:rgb   ffffff   ret   math   ring   rand   tostring   string   func   

/*随机获取颜色*/
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)

标签:rgb   ffffff   ret   math   ring   rand   tostring   string   func   

原文地址:https://www.cnblogs.com/tongsi/p/12690407.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!