我在这个项目中使用Sass 3.2.9,Compass 0.13.alpha.4和Susy 1.0.9。
这是scss:
.callout-image-wrap {
@include single-transition(border-color, .5s, ease-in-out, 0);
@include rem(border-bottom, 5px solid $mxn-light-blue);
&:hover { border-bottom-color : $mxn-dark-blue; }
}
这是生成的css:
.callout-image-wrap {
-webkit-transition: border-color 0.5s ease-in-out;
-webkit-transition-delay: 0;
-moz-transition: border-color 0.5s ease-in-out 0;
-o-transition: border-color 0.5s ease-in-out 0;
transition: border-color 0.5s ease-in-out 0;
border-bottom: 5px solid #0099ff;
border-bottom: 0.3125rem solid #0099ff; }
.callout-image-wrap:hover {
border-bottom-color: #003399; }
看起来FF甚至看不到转换。然而,它在Chrome中工作得很好。 Mozilla前缀转换的方式有变化吗?或者也许是Compass如何产生它们?或者我写错了?
我也尝试过:
@include transition(border-color .5s ease-in-out 0);
我在过去的项目中使用过这个mixin没有问题,所以我对这个很难过。
答案 0 :(得分:8)
事实证明Firefox在延迟时间内不会接受0,它必须不在那里或者有's'或'ms'。
我会把自己看出来。