1. 程式人生 > >隨機顏色

隨機顏色

turn return var col 隨機 clas nbsp function and

1     function rancolor() {
2         var r = Math.floor(Math.random() * 256);
3         var g = Math.floor(Math.random() * 256);
4         var b = Math.floor(Math.random() * 256);
5         var a = Math.random();
6         return "rgb(" + r + ‘,‘ + g + ‘,‘ + b + ")";
7     }

隨機顏色