标签:function 写入 tco root com screen etc element ons
<div onClick="test(‘yellow‘)">
CSS Variable
</div>
================CSS
:root{
--mainColor:red;
}
div{
background:black;
color:var(--mainColor);
}
div{
text-align:center;
}
:root {
--mainWidth:1000px;
--leftMargin:100px;
}
.main {
width: var(--mainWidth);
margin-left: var(--leftMargin);
}
@media screen and (min-width:1480px) {
:root {
--mainWidth:800px;
--leftMargin:50px;
}
}
================javascript
// 读取
var root = getComputedStyle(document.documentElement);
var cssVariable = root.getPropertyValue(‘--mainColor‘).trim();
console.log(cssVariable); // ‘75px‘
// 写入
function test(m){
document.documentElement.style.setProperty(‘--mainColor‘, m);
}
标签:function 写入 tco root com screen etc element ons
原文地址:http://www.cnblogs.com/jayruan/p/6185483.html