“JavaScript zufälliger Farbgenerator” Code-Antworten

Js zufällige Sechskantfarbe

'#'+Math.floor(Math.random()*16777215).toString(16);
Jolly Jackal

JavaScript zufälliger Farbgenerator

function generateRandomColor() {
  var letters = '0123456789ABCDEF';
  var color = '#';
  for (var i = 0; i < 6; i++) {
    color += letters[Math.floor(Math.random() * 16)];
  }
  return color;
}

var randomColor=generateRandomColor();//"#F10531"
Grepper

Funktion zur Erzeugung zufälliger Farbe in JavaScript

function random(number){
    return Math.floor(Math.random()*number);;
}
function randomColor(){
 return 'rgb('+random(255)+','+random(255)+','+random(255)+')';    
}
Vikash Choubey

JavaScript zufällige Farbe

var r = () => Math.random() * 256 >> 0;
var color = `rgb(${r()}, ${r()}, ${r()})`;
TC5550

JavaScript zufällige Farbe

'#'+(0x1000000+(Math.random())*0xffffff).toString(16).substr(1,6)
Bewildered Bat

JavaScript zufälliger Farbgenerator

const randomHexColour = (function() {
	const hexValues = "123456abcdef";
	return function() {
		let hexString = "";
		for (let i = 0; i < 6; i++) {
			hexString += hexValues[Math.floor(Math.random() * hexValues.length)];
		}
		return "#" + hexString;
	}
})();
function randomRGBColour(alpha = false) {
	if (alpha) {
		return "rgba(" + Math.floor(Math.random() * 256) + ", " + Math.floor(Math.random() * 256) + ", " + Math.floor(Math.random() * 256) + ", " + Math.random() + ")";
	}
	return "rgb(" + Math.floor(Math.random() * 256) + ", " + Math.floor(Math.random() * 256) + ", " + Math.floor(Math.random() * 256) + ")";
}
MattDESTROYER

Ähnliche Antworten wie “JavaScript zufälliger Farbgenerator”

Fragen ähnlich wie “JavaScript zufälliger Farbgenerator”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen