“JavaScript ändern Schriftfarbe basierend auf dem Wert” Code-Antworten

wie man die Farbe der Schrift in JS ändert

element.style.color = '#f0f';
just-saved-you-a-stackoverflow-visit

JavaScript ändern Schriftfarbe basierend auf dem Wert

//This is in RGB since it's the one I'm most used to
function FontColor(r,g,b,textHolder){
	textHolder.style.color = "rgb("+r+","+g+","+b+")"
}

//This will make the font color of the "text" box yellow
const text = document.getElementById("TextHolder")
FontColor(255,255,0,text)
DatMADCoder

Ähnliche Antworten wie “JavaScript ändern Schriftfarbe basierend auf dem Wert”

Fragen ähnlich wie “JavaScript ändern Schriftfarbe basierend auf dem Wert”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen