LESS Guard邏輯運(yùn)算符
描述
您可以使用關(guān)鍵字來(lái)解決Guard邏輯運(yùn)算符。 您可以使用和關(guān)鍵字組合使用保護(hù)條件,并使用not關(guān)鍵字取消條件。
例子
下面的例子演示了在LESS文件中使用Guard邏輯運(yùn)算符:
<!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>
接下來(lái),創(chuàng)建文件 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;
}
輸出
接下來(lái)執(zhí)行上面的命令,它將用下面的代碼自動(dòng)創(chuàng)建 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代碼。
在瀏覽器中打開(kāi)此HTML文件,將顯示如下輸出。