Less的模式匹配
Posted Web先生的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Less的模式匹配相关的知识,希望对你有一定的参考价值。
Less的模式匹配
Less提供了一种机制,允许根据参数的值来改变 mixin的行为。比如,以下代码就可以让 .mixin 根据不同的 @switch 值而表现各异:
.mixin (dark, @color) {
color: darken(@color, 10%);
}
.mixin (light, @color) {
color: lighten(@color, 10%);
}
此时,在调用 .mixin 时:如果 @switch 设为 light,就会得到浅色;如果 @switch 设为 dark,就会得到深色。如,以下调用:
@switch: light;
.class1 {
.mixin(@switch, #888);
}
@switch2 : dark;
.class2 {
.mixin(@switch, #666);
}
编译后的CSS代码为:
.class1 {
color: #a2a2a2;
}
.class2 {
color: #808080;
}
以上是关于Less的模式匹配的主要内容,如果未能解决你的问题,请参考以下文章
leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段