“Typscript CSS -Variablen HTML” Code-Antworten

Typscript CSS -Variablen

document.documentElement.style.setProperty("--main-background-color", "green");
PYTHON_NOT_SNAKE.py

Typscript CSS -Variablen HTML

const styling: { name: string, value: string }[] = [
	{ name: "--primary", value: "#123456" }
];

let styleElement: HTMLElement = document.createElement( 'style' );
let cssVariable: string = '';

for ( let i = 0; i < styling.length; i++ ) {
  cssVariable += styling[i].name + ':' + styling[i].value + ';';
}

styleElement.innerText = ':root { ' + cssVariable + ' }';
document.getElementsByTagName( 'head' )[0].appendChild( styleElement );
CaptainKungen

Ähnliche Antworten wie “Typscript CSS -Variablen HTML”

Fragen ähnlich wie “Typscript CSS -Variablen HTML”

Weitere verwandte Antworten zu “Typscript CSS -Variablen HTML” auf TypeScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen