Skip to content

Instantly share code, notes, and snippets.

@liveme
Last active December 24, 2015 06:39
Show Gist options
  • Save liveme/6758930 to your computer and use it in GitHub Desktop.
Save liveme/6758930 to your computer and use it in GitHub Desktop.
JavaScript随机获取十六进制 (hex)颜色
function getRandomColor(){
return "#"+(Math.random()*0.16777215).toString(16).substring(3,9);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment