生成随机颜色

function getRandomColor(){
      let colorStr = Math.ceil(0xffffff*Math.random()).toString(16);
      return '#' + colorStr.padStart(6,'0');
}

这个函数中值得注意的是:

1.js中0x开头表示16进制

2.toString(x)中x可以是任意除1以外正数,分别x进制格式输出

3.str.padStart(num,char)是es7的方法 

colorStr.padStart(6,'0')可以被替换成 '0'.repeat(6-colorStr.length)+colorStr
posted @ 2017-11-30 18:18  张啊咩  阅读(208)  评论(0编辑  收藏  举报