less

来源:互联网 发布:软件图标设计 编辑:程序博客网 时间:2024/05/10 12:40

LESS是一种动态样式语言,属于CSS预处理语言的一种,它使用类似CSS的语法,为CSS的赋予了动态语言的特性,如变量、继承、运算、函数等,更方便CSS的编写和维护。LESSCSS可以在多种语言、环境中使用,包括浏览器端、桌面客户端、服务端。

banner_code

LESS快速上手:

1、变量

变量允许我们单独定义一系列通用的样式,然后在需要的时候去调用。所以在做全局样式调整的时候我们可能只需要修改几行代码就可以了。

LESS源码:

?
1
2
3
4
5
6
7
8
@color#4D926F;
 
#header {
    color: @color;
}
h2{
    color: @color;
}

编译后的CSS:

?
1
2
3
4
5
6
#header {
    color: #4D926F;
}
h2 {
    color: #4D926F;
}

2、混入

混入可以将一个定义好的class A轻松的引入到另一个class B中,从而简单实现class B继承class A中的所有属性。我们还可以带参数地调用,就像使用函数一样。

LESS源码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.rounded-corners (@radius: 5px) {
    -webkit-border-radius: @radius;
    -moz-border-radius: @radius;
    -ms-border-radius: @radius;
    -o-border-radius: @radius;
    border-radius: @radius;
}
 
#header {
    .rounded-corners;
}
#footer {
    .rounded-corners(10px);
}

编译后的CSS:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#header {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
#footer {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

3、嵌套

我们可以在一个选择器中嵌套另一个选择器来实现继承,这样很大程度减少了代码量,并且代码看起来更加的清晰。

LESS源码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#header {
    h1{
        font-size26px;
        font-weightbold;
    }
    p {
        font-size12px;
        a {
            text-decorationnone;
            &:hover {
                border-width1px
            }
        }
    }
}

编译后的CSS:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
#header h1{
    font-size26px;
    font-weightbold;
}
#header p {
    font-size12px;
}
#header p a {
    text-decorationnone;
}
#header p a:hover {
    border-width1px;
}

4、函数和运算

运算提供了加,减,乘,除操作;我们可以做属性值和颜色的运算,这样就可以实现属性值之间的复杂关系。LESS中的函数一一映射了JavaScript代码,如果你愿意的话可以操作属性值。

LESS源码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
@the-border1px;
@base-color#111;
@red:        #842210;
 
#header {
    color: (@base-color * 3);
    border-left: @the-border;
    border-right: (@the-border * 2);
}
#footer {
    color: (@base-color + #003300);
    border-color: desaturate(@red10%);
}

编译后的CSS:

?
1
2
3
4
5
6
7
8
9
#header {
    color#333;
    border-left1px;
    border-right2px;
}
#footer {
    color#114411;
    border-color#7d2717;
}

5、LESS的安装使用方法

  • 编译后直接引用css文件
  • 直接引用less文件和lesscss.js文件
  1. 下载LESSCSS的.js文件,例如lesscss-1.4.0.min.js。
  2. 在页面中引入.less文件
    <link rel="stylesheet/less" href="example.less" >

    需要注意rel属性的值是stylesheet/less,而不是stylesheet

  3. 引入第1步下载的.js文件
    <script src="lesscss-1.4.0.min.js"</script>
0 0