如何创建一个可以与CSS渐变一起使用的mixin?

时间:2012-12-26 10:18:48

标签: css less

我的代码中有以下内容:

    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,我正在尝试理解编码它们的方法。

1 个答案:

答案 0 :(得分:0)

uses pattern matching,所以你是正确的,它可能需要两个mixins(一个停一站,另一个停两站)。下面的代码演示了这一点(它可能会进一步减少,但这使得它发生了相当明显的事情)。注意“name”是如何相同的(在我的例子中,setTopGradient),但变量的数量是不同的。

更正:您的问题显示您在webkit站点使用小数,但根据this page,这不是必需的。所以我将 更新 以下代码只占百分比。

<强> LESS

.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));
}