摘要:变量变量使用混合混合使用运算运算包含了所有传递进来的参数条件判断条件判断使用
//less
@color: #4D926F;
//使用
#header {
color: @color;
}
//less
.rounded-corners (@radius: 5px) {
border-radius: @radius;
}
//使用
#footer {
.rounded-corners(10px);
}
//less
@the-border: 1px;
@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(@red, 10%);
}
@arguments包含了所有传递进来的参数
.box-shadow (@x: 0, @y: 0, @blur: 1px, @color: #000) {
box-shadow: @arguments;
}
//less
.arrow(@direction,@color,@pixel:5px) when (@direction = up) {
.arrowUp(@color);
.arrowSet(@pixel);
}
.arrow(@direction,@color,@pixel:5px) when (@direction = down) {
.arrowDown(@color);
.arrowSet(@pixel);
}
//使用
div.d1{
.arrow(right,red);
}
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/1319.html
使用grunt实时编译less文件 下图是项目的文件组织 showImg(https://segmentfault.com/img/bVqbtg); 生成package.json文件,通过npm init命令。 安装你需要的Devdependencies/denpendencies。 npm install grunt --save-dev npm install load-grunt-ta...
摘要:环境安装本站实例采用的是百度的静态资源库上的资源。不包含文档和最初的源代码文件。点击该按钮,您可以直接从上得到最新的和源代码。如果您使用的是未编译的源代码,您需要编译文件来生成可重用的文件。 1.Bootstrap 1.1 Bootstrap 包的内容 基本结构:Bootstrap 提供了一个带有网格系统、链接样式、背景的基本结构。这将在 Bootstrap 基本结构 部分详细讲解。...
阅读 2643·2021-11-25 09:43
阅读 2432·2021-09-22 15:29
阅读 963·2021-09-22 15:17
阅读 3586·2021-09-03 10:36
阅读 2201·2019-08-30 13:54
阅读 1721·2019-08-30 11:23
阅读 1145·2019-08-29 16:58
阅读 1272·2019-08-29 16:14