©2010-2024


鲁公网安备
37131202371784号

JS生成随机颜色

// 十进制
'#'+Math.floor(Math.random()*256).toString(10);
// 十六进制
'#'+Math.floor(Math.random()*0xffffff).toString(16);
// RGB形式
var r=Math.floor(Math.random()*256);
var g=Math.floor(Math.random()*256);
var b=Math.floor(Math.random()*256);

另随机数,设定最大最小值

function rand (min,max) {
  if (!max) {
    max = min
    min = 0
  }
  Math.floor(Math.random()*(max-min+1)+min)
}

JOE