0

我的代码中有以下内容:

    background: -moz-linear-gradient(
 top,
        white,
        #e5e5e5 88%,
        #d8d8d8
    );
    background: -webkit-gradient(
 linear,
        left top, left bottom,
        from(white),
        to(#d8d8d8),
        color-stop(0.88, #e5e5e5)
    );

background: -moz-linear-gradient(
    top,
    #8b8b8b,
    #a9a9a9 10%,
    #bdbdbd 30%,
    #bfbfbf
);
background: -webkit-gradient(
    linear,
    left top, left bottom,
    from(#8b8b8b),
    to(#bfbfbf),
    color-stop(0.1, #a9a9a9),
    color-stop(0.3, #bdbdbd)
);

我想将这些实现为 mixin 并减少使用。但是,似乎我需要两个 mixin。有人能解释一下我怎么能做到这一点,以及两个 mixin 会是什么样子。对不起,如果这个问题有点简单,但我刚开始使用 mixins,我正在尝试理解编码它们的方式。

4

1 回答 1

0

LESS使用模式匹配,所以你是正确的,它可能需要两个 mixin(一个需要一站,另一个需要两站)。下面的代码演示了这一点(它可能会进一步减少,但这使发生的事情变得相当明显)。请注意“名称”是如何相同的(在我的情况下是setTopGradient),但变量的数量是不同的。

更正:您的问题显示您使用小数作为止损点,但根据此页面webkit,这不是必需的。所以我将以下代码更新为百分比。

较少的

.setTopGradient(@startClr, @endClr, @st1Clr, @st1Pos) {

   background: -moz-linear-gradient(
      top,
      @startClr,
      @st1Clr @st1Pos,
      @endClr
   );

   background: -webkit-linear-gradient(
      linear,
      left top,
      left bottom,
      from(@startClr),
      to(@endClr),
      color-stop(@st1Pos, @st1Clr)
   );
}

.setTopGradient(@startClr, @endClr, @st1Clr, @st1Pos, @st2Clr, @st2Pos) {

   background: -moz-linear-gradient(
      top,
      @startClr,
      @st1Clr @st1Pos,
      @st2Clr @st2Pos,
      @endClr
   );

   background: -webkit-linear-gradient(
      linear,
      left top,
      left bottom,
      from(@startClr),
      to(@endClr),
      color-stop(@st1Pos, @st1Clr),
      color-stop(@st2Pos, @st2Clr)
   );
}

.someClass1 {
.setTopGradient(white, #d8d8d8, #e5e5e5, 88%);
}
.someClass2 {
.setTopGradient(#8b8b8b, #bfbfbf, #a9a9a9, 10%, #bdbdbd, 30%);
}

CSS 输出

.someClass1 {
  background: -moz-linear-gradient(top, #ffffff, #e5e5e5 88%, #d8d8d8);
  background: -webkit-linear-gradient(linear, left top, left bottom, from(#ffffff), to(#d8d8d8), color-stop(88%, #e5e5e5));
}
.someClass2 {
  background: -moz-linear-gradient(top, #8b8b8b, #a9a9a9 10%, #bdbdbd 30%, #bfbfbf);
  background: -webkit-linear-gradient(linear, left top, left bottom, from(#8b8b8b), to(#bfbfbf), color-stop(10%, #a9a9a9), color-stop(30%, #bdbdbd));
}
于 2012-12-27T03:33:26.527 回答