()
| 103 | |
| 104 | // 随机颜色 |
| 105 | function randomColor() { |
| 106 | var r = Math.floor(Math.random() * 256); |
| 107 | var g = Math.floor(Math.random() * 256); |
| 108 | var b = Math.floor(Math.random() * 256); |
| 109 | var color = '#' + r.toString(16) + g.toString(16) + b.toString(16); |
| 110 | return color; |
| 111 | } |
| 112 | |
| 113 | // 开关切换 |
| 114 | let switchState = false |