使用javascript生成多种颜色

时间:2017-05-15 14:28:31

标签: javascript

我正在开展一个小方案项目,使用javascript生成和显示多种颜色。 https://mrkwrght.github.io/totallycolours/

我的代码目前是这样的:

 var randomColor15 = "000000".replace(/0/g,function(){return (~~

(Math.random()*16)).toString(16);});

$(function() {

$("#colorbox").css({
    backgroundColor:'#' + randomColor
});
$("#colorcode").text("#" + randomColor);

此块重复16次。必须有一种更简单的方法。

我还打算用更多加载按钮替换刷新按钮。但我不确定如何做到这一点

1 个答案:

答案 0 :(得分:0)

你必须把它放在一个函数中,然后调用

var randomColor15 = function(){return "#"+"000000".replace(/0/g,function(){return (~~(Math.random()*16)).toString(16)})};
//only test
for(var i=0;i<10;i+=1){
  console.log(randomColor15());
}