admin管理员组文章数量:1345435
I found on stackoverflow this color generator :
Math.random()*0xFFFFFF<<0
It works fine. The only problem is that I'd like to generate random colors, but only of different shades of grey.
I have no idea how I could achieve something like this.
I found on stackoverflow this color generator :
Math.random()*0xFFFFFF<<0
It works fine. The only problem is that I'd like to generate random colors, but only of different shades of grey.
I have no idea how I could achieve something like this.
Share asked Mar 27, 2014 at 15:44 Romain BraunRomain Braun 3,6844 gold badges26 silver badges46 bronze badges 1- Just generate a single random number between 0 and 255 and use that for the r,g and b ponent. – Matt Burland Commented Mar 27, 2014 at 15:51
2 Answers
Reset to default 13var value = Math.random() * 0xFF | 0;
var grayscale = (value << 16) | (value << 8) | value;
var color = '#' + grayscale.toString(16);
color
will be a random grayscale hex color value, appropriate for using in eg element.style
properties.
Note: there are several ways to coerce the random floating-point number to an integer. Bitwise OR (x | 0
) will usually be the fastest, as far as I know; the floor function (Math.floor(x)
) is approximately the same speed, but only truncates for positive numbers (you'd have to use Math.ceil(x)
for negative numbers). Bitwise operators won't work as expected for numbers that require more than 32 bits to represent, but Math.random() * 0xFF
will always be in the range [0,255)
.
If you want to use RGB, rgb grays can be created by supplying the same number in all three arguments i.e. rgb(255,255,255) (the number must be between 0 and 255).
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min)) + min;
}
var randomNumberString = String(getRandomInt(0,255));
var color = "rgb(" + randomNumberString + "," + randomNumberString + "," + randomNumberString + ")";
本文标签: javascriptRandom Hex generator (only grey colors)Stack Overflow
版权声明:本文标题:javascript - Random Hex generator (only grey colors) - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743688718a2522333.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论