LESS Guard逻辑运算符
2018-01-11 10:02 更新
描述
您可以使用关键字来解决Guard逻辑运算符。 您可以使用和关键字组合使用保护条件,并使用not关键字取消条件。
例子
下面的例子演示了在LESS文件中使用Guard逻辑运算符:
<!doctype html> <head> <title>Guard Logical Operators</title> <link rel="stylesheet" href="style.css" type="text/css" /> </head> <body> <h2>Example of Guard Logical Operators</h2> <p class="class1">Hello World...</p> <p class="class2">Welcome to Tutorialspoint...</p> </body> </html>
接下来,创建文件 style.less 。
style.less
.mixin (@a) when (@a > 50%) and (@a > 5px){
font-size: 14px;
}
.mixin (@a) when not (@a < 50%) and not (@a < 5px){
font-size: 20px;
}
.mixin (@a) {
color: @a;
}
.class1 { .mixin(#FF0000) }
.class2 { .mixin(#555) }
您可以使用以下命令将 style.less 编译为 style.css :
lessc style.less style.css
style.css
.class1 {
font-size: 20px;
color: #FF0000;
}
.class2 {
font-size: 20px;
color: #555;
}
输出
接下来执行上面的命令,它将用下面的代码自动创建 style.css 文件:
style.less
.mixin (@a) when (@a > 50%) and (@a > 5px){ font-size: 14px; } .mixin (@a) when not (@a < 50%) and not (@a < 5px){ font-size: 20px; } .mixin (@a) { color: @a; } .class1 { .mixin(#FF0000) } .class2 { .mixin(#555) }
lessc style.less style.css
style.css
.class1 { font-size: 20px; color: #FF0000; } .class2 { font-size: 20px; color: #555; }
输出
在 guard_logical_operators.html 文件中保存上面的html代码。
在浏览器中打开此HTML文件,将显示如下输出。
以上内容是否对您有帮助:
更多建议: