js 随机色
Posted https://blog.zlevai.com
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 随机色相关的知识,希望对你有一定的参考价值。
//生成随机色 function colorRandom() { colorStr = "#" + ("00000" + (Math.random() * 0x1000000 << 0).toString(16)).slice(-6); return colorStr; // var r=Math.floor(Math.random()*256); // var g=Math.floor(Math.random()*256); // var b=Math.floor(Math.random()*256); // return `rgb(${r},${g},${b})`; };
以上是关于js 随机色的主要内容,如果未能解决你的问题,请参考以下文章