随机颜色
2021-06-07 本文已影响0人
新世纪好青年
/**
* 随机颜色
* @returns {string}
*/
function randomColor(){
var color=["#FFB461","#75C699","#EE7F7B","#83B6E1","#DCDCDC","#FFB461","#75C699","#EE7F7B","#83B6E1","#DCDCDC"];
var _index=Math.floor(Math.random() * color.length);
// console.log(_index);
return color[_index] ;
}