Created
November 6, 2015 06:40
-
-
Save tonyc726/22e29ba83717b8f13b38 to your computer and use it in GitHub Desktop.
JS随机生成颜色值
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function color(){ | |
return '#' + Math.floor(0x1000000 + Math.random() * 0x1000000).toString(16).slice(1); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment