how to change a css variable with javascript
var root = document.querySelector(':root');
root.style.setProperty('--variable', 'lightblue');
/or/
root.style.setProperty('--variable', myColor);
how to change a css variable with javascript
var root = document.querySelector(':root');
root.style.setProperty('--variable', 'lightblue');
/or/
root.style.setProperty('--variable', myColor);
javascript get css variable
let docStyle = getComputedStyle(document.documentElement);
//get variable
let myVarVal docStyle.getPropertyValue('--my-variable-name');
//set variable
docStyle.setProperty('--my-variable-name', '#fff');
how to change css variable in javascript
document.documentElement.style.setProperty("--main-background-color", "green");
set css variable from javascript
document.documentElement.style.cssText = "--tab-count: 3";
/or/
document.documentElement.style.setProperty("--tab-count", 5);
/or/
document.documentElement.setAttribute("style", "--tab-count: 5");
change css variable with javascript
document.documentElement.style.setProperty("--tab-count", 5);
change css variable with javascript
let root = document.documentElement;
root.addEventListener("mousemove", e => {
root.style.setProperty('--mouse-x', e.clientX + "px");
root.style.setProperty('--mouse-y', e.clientY + "px");
});
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us