微信小程序24__js 生成随机颜色

微信小程序24__js 生成随机颜色_第1张图片

// 生成随机颜色
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('')
}

你可能感兴趣的:(小程序基础,微信小程序,javascript,小程序,1024程序员节)