美文网首页
随机颜色

随机颜色

作者: 中建云筑股份有限公司 | 来源:发表于2018-04-09 09:09 被阅读0次

    调用函数即可 会返回一个随机的rgb

    function getRandomColor() {
      let rgb = []
      for (let i = 0; i < 3; ++i) {
        let color = Math.floor(Math.random() * 256).toString(16)
        color = color.length == 1 ? '0' + color : color
        rgb.push(color)
      }
      return '#' + rgb.join('')
    }
    

    相关文章

      网友评论

          本文标题:随机颜色

          本文链接:https://www.haomeiwen.com/subject/gfcezxtx.html