“JS установить переменную CSS” Ответ

Как изменить переменную CSS с помощью JavaScript

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

JavaScript получить переменную 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 получить переменную CSS

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

Как изменить переменную CSS в JavaScript

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

Установите переменную CSS из 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

JS установить переменную CSS

document.documentElement.style.setProperty("--main-background-color", "green");
Grumpy Gerenuk

Ответы похожие на “JS установить переменную CSS”

Вопросы похожие на “JS установить переменную CSS”

Больше похожих ответов на “JS установить переменную CSS” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования