“Wie bekommt man zufälliges RGB in JavaScript? [Duplikat]” Code-Antworten

Wie bekommt man zufälliges RGB in JavaScript? [Duplikat]

function random_rgba() {
    var o = Math.round, r = Math.random, s = 255;
    return 'rgba(' + o(r()*s) + ',' + o(r()*s) + ',' + o(r()*s) + ',' + r().toFixed(1) + ')';
}

var color = random_rgba();

g.fillStyle   = color;
g.strokeStyle = color;
Silly Shrike

Wie bekommt man zufälliges RGB in JavaScript? [Duplikat]

const randomBetween = (min, max) => min + Math.floor(Math.random() * (max - min + 1));
const r = randomBetween(0, 255);
const g = randomBetween(0, 255);
const b = randomBetween(0, 255);
const rgb = `rgb(${r},${g},${b})`; // Collect all to a css color string
Silly Shrike

Ähnliche Antworten wie “Wie bekommt man zufälliges RGB in JavaScript? [Duplikat]”

Fragen ähnlich wie “Wie bekommt man zufälliges RGB in JavaScript? [Duplikat]”

Weitere verwandte Antworten zu “Wie bekommt man zufälliges RGB in JavaScript? [Duplikat]” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen