共 4 条评论关于"前端黑科技:root之CSS变量var,从此Sass/Less是弟弟(上篇)"
最新评论
用过sass或leass的都知道,主要他们可以有嵌套和变量以及函数功能,其实在原生css中,已经开始逐渐支持,诚然目前只有你我熟知,而他人还处在萌芽中,了解css变量,你会发现CSS从此变得异常强大。
1 2 3 4 5 6 7 8 9 10 11 12 | // 局部声明 body { --foo: #ed145b; --bar: #F7EFD2; } // 全局声明 :root{ --foo: #ed145b; --bar: #F7EFD2; } |
例如上面我们申明了2个变量:--foo和--bar,其实你只需要把它们理解成css自定义属性看待,它们与color、font-size等正式属性没有什么不同,只是没有默认含义,注意css变量名称是区分大小写的,通常我们写的css是不区分
你可能会问,为什么选择两根连词线(--)表示变量?因为$foo被 Sass 用掉了,@foo被 Less 用掉了。为了不产生冲突,官方的 CSS 变量就改用两根连词线了
1 2 3 4 5 6 | :root { --1: #369; } body { background-color: var(--1); } |
1 2 3 4 | body { --深蓝: #369; background-color: var(--深蓝); } |
1 2 3 4 | p { color: var(--foo); border::1px solid var(--bar); } |
1 | color: var(--foo, #ED145B); //第二个参数就是默认值,假设--foo为空情况下,会使用#ED145B |
1 2 3 4 | :root { --primary-color: red; --logo-text: var(--primary-color); // 上面刚声明,这里就可以使用 } |
1 2 3 4 5 | .foo { --side: margin-top; /* 很显然,下面是无效的 */ var(--side): 20px; } |
1 2 3 4 5 6 7 | --bar: 'hello'; --foo: var(--bar)' world'; // 示例 body:after { content: '--screen-category : 'var(--screen-category); } |
1 2 3 4 5 6 7 | .foo { --gap: 20; /* 下面无效 */ margin-top: var(--gap)px; /* 通过calc去计算,下面有效 */ margin-top: calc(var(--gap) * 1px); } |
1 2 3 4 5 6 7 8 9 10 11 | /* 无效 */ .foo { --foo: '20px'; font-size: var(--foo); } /* 有效 */ .foo { --foo: 20px; font-size: var(--foo); } |
1 2 3 4 5 6 7 8 9 10 |
上面代码中,三个选择器都声明了--color变量。不同元素读取这个变量的时候,会采用优先级最高的规则,因此三段文字的颜色是不一样的。
1 2 3 4 | a { color: #7F583F; color: var(--primary); // 应该很好理解,如果这里读不出值,那么并不会覆盖上面的color } |
1 2 3 4 5 6 7 8 | a { @supports ( (--a: 0)) { /* supported */ } @supports ( not (--a: 0)) { /* not supported */ } |
1 2 3 4 5 6 7 8 9 10 | const isSupported = window.CSS && window.CSS.supports && window.CSS.supports('--a', 0); if (isSupported) { /* supported */ } else { /* not supported */ } |
1 2 3 4 5 6 7 8 9 10 11 12 13 | // 设置变量 document.body.style.setProperty('--primary', '#7F583F'); //局部 document.documentElement.style.setProperty('--primary', '#7F583F'); //全局 // 读取变量 document.body.style.getPropertyValue('--primary').trim(); /局部 document.documentElement.style.getPropertyValue('--primary').trim(); /全局 getComputedStyle(document.documentElement).getPropertyValue('--time'); // 全局,如果是在css表中设置的需要这种方式获取 // '#7F583F' // 删除变量 document.body.style.removeProperty('--primary'); //局部 document.documentElement.style.removeProperty('--primary'); //全局 |
1 2 3 4 5 6 | const docStyle = document.documentElement.style; document.addEventListener('mousemove', (e) => { docStyle.setProperty('--mouse-x', e.clientX); docStyle.setProperty('--mouse-y', e.clientY); }); |
1 | --foo: if(x > 5) this.width = 10; |
上面代码中,--foo的值在 CSS 里面是无效语句,但是可以被 JavaScript 读取。这意味着,可以把样式设置写在 CSS 变量中,让 JavaScript 读取。所以,CSS 变量提供了 JavaScript 与 CSS 通信的一种途径。
上一篇:Node.js+Koa2项目中利用nodemon来设置热更新
下一篇:wordPress通过数据库命令或后台快速修改文章阅读量
最新评论
支付宝扫一扫打赏
微信扫一扫打赏
有用!
花,迷失了眼~
手动竖大拇指!!应该搞个表情包在评论区了,不然想竖大拇指都无计可施!哈哈!
@万花网嗯,有道理,晚点我给加上