如何创建一个calc mixin作为表达式传递以生成标签?

时间:2012-05-31 00:38:10

标签: css css3 sass

我正在开发一个sass样式表,我希望使用calc元素动态调整某些内容的大小。由于calc元素尚未标准化,因此我需要定位calc()-moz-calc()-webkit-calc()

我有没有办法创建一个mixin或函数,我可以传递一个表达式,以便它生成所需的标签,然后可以设置为widthheight?< / p>

4 个答案:

答案 0 :(得分:86)

这将是一个基本的mixin with an argument,幸好表达式在支持的范围内不是特定于浏览器的:

@mixin calc($property, $expression) {
  #{$property}: -webkit-calc(#{$expression});
  #{$property}: calc(#{$expression});
}

.test {
  @include calc(width, "25% - 1em");
}

将呈现为

.test {
  width: -webkit-calc(25% - 1em);
  width: calc(25% - 1em);
}

您可能希望在不支持calc时包含“默认”值。

答案 1 :(得分:10)

Compass提供a shared utility来为这种场合添加供应商前缀。

@import "compass/css3/shared";

$experimental-support-for-opera: true; // Optional, since it's off by default

.test {
  @include experimental-value(width, calc(25% - 1em));
}

答案 2 :(得分:4)

使用非引用功能可以很容易地实现使用calc:

$variable: 100%
height: $variable //for browsers that don't support the calc function  
height:unquote("-moz-calc(")$variable unquote("+ 44px)")
height:unquote("-o-calc(")$variable unquote("+ 44px)")
height:unquote("-webkit-calc(")$variable unquote("+ 44px)")   
height:unquote("calc(")$variable unquote("+ 44px)")

将呈现为:

height: 100%;
height: -moz-calc( 100% + 44px);
height: -o-calc( 100% + 44px);
height: -webkit-calc( 100% + 44px);
height: calc( 100% + 44px);

您也可以尝试按照上面的建议创建mixin,但我的确略有不同:

$var1: 1
$var2: $var1 * 100%
@mixin calc($property, $variable, $operation, $value, $fallback)
 #{$property}: $fallback //for browsers that don't support calc function
 #{$property}: -mox-calc(#{$variable} #{$operation} #{$value})
 #{$property}: -o-calc(#{$variable} #{$operation} #{$value})
 #{$property}: -webkit-calc(#{$variable} #{$operation} #{$value})
 #{$property}: calc(#{$variable} #{$operation} #{$value})

.item     
 @include calc(height, $var1 / $var2, "+", 44px, $var1 / $var2 - 2%)

将呈现为:

.item {
height: 98%;
height: -mox-calc(100% + 44px);
height: -o-calc(100% + 44px);
height: -webkit-calc(100% + 44px);
height: calc(100% + 44px);
}

答案 3 :(得分:0)

另一种写作方式:

@mixin calc($prop, $val) {
  @each $pre in -webkit-, -moz-, -o- {
    #{$prop}: $pre + calc(#{$val});
  } 
  #{$prop}: calc(#{$val});
}

.myClass {
  @include calc(width, "25% - 1em");
}

我认为这是更优雅的方式。