您当前的位置:首页 > 计算机 > 编程开发 > JavaScript

js:随机获取一个RGB颜色值

时间:05-15来源:作者:点击数:

随机获取一个RGB颜色值

实现代码如下

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)
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门