js随机色的2种实现方式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js随机色的2种实现方式相关的知识,希望对你有一定的参考价值。
随机颜色的二种写法
写法一:
var arr = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "A", "B","C","D"];
function Color(){
var str = "#";
for(var i=0;i<6;i++){
str += arr[Math.floor(Math.random()*arr.length)]
}
return str;
}
写法二:
function Color() {
var r = Math.floor(Math.random()*256),
g = Math.floor(Math.random()*256),
b = Math.floor(Math.random()*256);
return "rgb("+r+","+g+","+b+")";
}
以上是关于js随机色的2种实现方式的主要内容,如果未能解决你的问题,请参考以下文章
js实现随机选取[10,100)中的10个整数,存入一个数组,并排序。 另考虑(10,100]和[10,100]两种情况。