前言
正文
老WEB项目(JSP,PHP)中想使用less等打包工具方法
1 | var gulp = require('gulp'); |
基于gulp的H5-rem2px项目方案
项目架构
1 | - package.json |
package.json
1 | { |
gulpfile.js
1 |
|
src/asset/css/*.less1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*函数表达式*/
.wrap () {
text-wrap: wrap;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
word-wrap: break-word;
}
pre {
.wrap;
div {
width: 100px;
}
}
/*mixin*/
.mixin (dark, @color) {
color: darken(@color, 10%);
}
.mixin (light, @color) {
color: lighten(@color, 20%);
}
.mixin (@_, @color) {
display: block;
}
@switch: dark;
.class {
.mixin(@switch, #888);
}
/*参数形式*/
.border-radius (@radius) {
border-radius: @radius;
-moz-border-radius: @radius;
-webkit-border-radius: @radius;
}
#header {
.border-radius(4px);
}
.button {
.border-radius(6px);
}
/*嵌套形式*/
#header {
color: black;
.navigation {
font-size: 12px;
}
.logo {
width: 300px;
&:hover { text-decoration: none }
}
}
.bordered {
&.float {
float: left;
}
.top {
margin: 5px;
}
}
小结
本文示例代码:打包工具示例
可以参考以下资料:
https://github.com/amfe/article/issues/17?utm_source=caibaojian.com
https://www.w3cplus.com/PostCSS/postcss-quickstart-guide-gulp-setup.html
关于作者
** 珠峰
WEB开发与管理相结合,注重技术与应用结合。现居上海。