“JavaScript obtient la variable CSS” 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

Définir la variable CSS à partir de JavaScript

document.documentElement.style.cssText = "--tab-count: 3";
/or/
document.documentElement.style.setProperty("--tab-count", 5);
/or/
document.documentElement.setAttribute("style", "--tab-count: 5");
Vivacious Vendace

Comment changer la variable CSS dans JavaScript

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

Réponses similaires à “JavaScript obtient la variable CSS”

Questions similaires à “JavaScript obtient la variable CSS”

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

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code