//得到随机的颜色值
randomColor() {
let r =Math.floor(Math.random() *256);
let g =Math.floor(Math.random() *256);
let b =Math.floor(Math.random() *256);
return `rgb(${r},${g},${b})`;
},
08-22
524
05-22
346
02-03
211