实现代码如下
function randomColor() {
let r = Math.floor(Math.random() * 255);
let g = Math.floor(Math.random() * 255);
let b = Math.floor(Math.random() * 255);
return `rgb(${r},${g},${b})`;
}
console.log(randomColor());
// rgb(178,134,78)
彭世瑜 ©著作权
文章标签 javascript 开发语言 ecmascript Math 文章分类 JavaScript 前端开发
实现代码如下
function randomColor() {
let r = Math.floor(Math.random() * 255);
let g = Math.floor(Math.random() * 255);
let b = Math.floor(Math.random() * 255);
return `rgb(${r},${g},${b})`;
}
console.log(randomColor());
// rgb(178,134,78)
下一篇:js:获取图片颜色的主色调
Python获取颜色RGB值
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M