系列文章目录
一、继承
1、extend 关键字的使用
extend 是 Less 的一个伪类,它可继承所匹配声明中的全部样式
.animation {
transition: all .3s ease-out;
.hide {
transform: scale(0);
}
}
#main {
&:extend(.animation);
}
#con {
&:extend(.animation .hide);
}
.animation,
#main {
transition: all 0.3s ease-out;
}
.animation .hide,
#con {
transform: scale(0);
}
2、all 全局搜索替换
#main {
width: 200px;
}
#main {
&:after {
content: 'Less is more.'
}
}
#wrap:extend(#main all) {
height: 200px;
}
#main,
#wrap {
width: 200px;
}
#main:after,
#wrap:after {
content: 'Less is more.';
}
#wrap {
height: 200px;
}
3、减少代码的重复性
extend 与方法的最大差别,就是 extend 是同个选择器共用同一个声明,而方法是使用自己的声明,这就增加了代码的重复性
.method {
width: 200px;
&:after {
content: 'Less is more';
}
}
#main {
.method
}
.method {
width: 200px;
}
.method:after {
content: 'Less is more';
}
#main {
width: 200px;
}
#main:after {
content: 'Less is more';
}
二、导入
1、文件导入
#nav {
width: 100%;
height: 200px;
background: pink;
}
@import 'nav';
#nav {
width: 100%;
height: 200px;
background: pink;
}
2、reference
Less 中最强大的特性,使用引入的Less文件,但不会编译它
#nav {
width: 100%;
height: 200px;
background: pink;
}
@import (reference) 'nav';
// 不会编译,内容为空
3、once
@import 语句的默认行为。这表明相同的文件只会被导入一次,而随后的导入文件的重复代码都不会解析
- 定义要导入的文件的样式
#nav {
width: 100%;
height: 200px;
background: pink;
}
@import (once) 'nav';
@import (once) 'nav';
#nav {
width: 100%;
height: 200px;
background: pink;
}
4、multiple
nav.less 文件
- 定义要导入的文件的样式
#nav {
width: 100%;
height: 200px;
background: pink;
}
- 把 nav.less 文件导入进来
@import (multiple) 'nav';
@import (multiple) 'nav';
#nav {
width: 100%;
height: 200px;
background: pink;
}
#nav {
width: 100%;
height: 200px;
background: pink;
}
三、条件表达式
1、带条件的混合
index.less 文件
.mixin(@a) when(lightness(@a) >= 50%) {
background: black;
}
.mixin(@a) when(lightness(@a) < 50%) {
background: white;
}
.mixin(@a) {
color: @a;
}
.class1 {
.mixin(#ddd);
}
.class2 {
.mixin(#555);
}
index.css 文件
- 自动转义后的 css 文件内容如下
.class1 {
background: black;
color: #ddd;
}
.class2 {
background: white;
color: #555;
}
2、类型检测函数
index.less 文件
.mixin(@a:#fff; @b:0) when(isNumber(@b)) {
color: @a;
font-size: @b;
}
.mixin(@a, @b:black) when (isColor(@b)) {
font-size: @a;
color: @b;
}
.class {
.mixin(#666)
}
index.css 文件
- 自动转义后的 css 文件内容如下
.class {
color: #666;
font-size: 0;
font-size: #666;
color: black;
}
3、单位检测函数
index.less 文件
.mixin(@a) when(ispixel(@a)) {
width: @a;
}
.class {
.mixin(960px);
}
index.css 文件
- 自动转义后的 css 文件内容如下
.class {
width: 960px;
}
四、函数
示例:color() 函数,解析颜色,将代表颜色的字符串转换为颜色值
index.less 文件
body {
color: color("#f60");
background: color("red");
}
index.css 文件
- 自动转义后的 css 文件内容如下
body {
color: #f60;
background: #ff0000;
}
五、写在最后
如果你想学习更多内容,那么推荐去 Less 官网进行深入学习。
原文地址:https://blog.csdn.net/qq_45902692/article/details/127107494
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_47664.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。