生成一个随机的十六进制颜色代码。
使用 Math.random
生成一个随机的24位(6x4位)十六进制数。 使用位操作符,然后使用 toString(16)
将其转换为十六进制字符串。
const randomHexColorCode = () => { let n = ((Math.random() * 0xfffff) | 0).toString(16); return '#' + (n.length !== 6 ? ((Math.random() * 0xf) | 0).toString(16) + n : n); };
randomHexColorCode(); // "#e34155"