“JavaScript Zmień kolor czcionki na podstawie wartości” Kod odpowiedzi

Jak zmienić kolor czcionki w JS

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

JavaScript Zmień kolor czcionki na podstawie wartości

//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

Odpowiedzi podobne do “JavaScript Zmień kolor czcionki na podstawie wartości”

Pytania podobne do “JavaScript Zmień kolor czcionki na podstawie wartości”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu