“Comment changer la variable CSS dans JavaScript” Réponses codées

Comment changer une variable CSS avec JavaScript

var root = document.querySelector(':root');
root.style.setProperty('--variable', 'lightblue');
/or/
root.style.setProperty('--variable', myColor); 
Spotless Seal

JavaScript obtient la variable CSS

let docStyle = getComputedStyle(document.documentElement);

//get variable
let myVarVal docStyle.getPropertyValue('--my-variable-name');

//set variable
docStyle.setProperty('--my-variable-name', '#fff');
garzj

JavaScript obtient la variable CSS

getComputedStyle(document.documentElement)
    .getPropertyValue('--my-variable-name'); // #999999
DJ Ultimate Disco Party

Comment changer la variable CSS dans JavaScript

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

Comment changer la variable CSS dans JavaScript

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

Comment changer la variable CSS dans JavaScript

document.documentElement.style.cssText = "--main-background-color: red";
PYTHON_NOT_SNAKE.py

Réponses similaires à “Comment changer la variable CSS dans JavaScript”

Questions similaires à “Comment changer la variable CSS dans JavaScript”

Plus de réponses similaires à “Comment changer la variable CSS dans JavaScript” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code