目前,我正试图将一些CSS整理成SCSS(通过Compass Style)。这就是我的意思:
-webkit-animation: moveFromBottom 300ms ease;
-moz-animation: moveFromBottom 300ms ease;
-ms-animation: moveFromBottom 300ms ease;
------------>
我做过类似于我的过渡的例子:
在:
-webkit-transition: all 300ms linear;
-moz-transition: all 300ms linear;
-o-transition: all 300ms linear;
-ms-transition: all 300ms linear;
transition: all 300ms linear;
后:
@include single-transition(all, 200ms, linear);
但是我的问题是我无法找到Compass Style支持。如何将其创建为mixin,并包含“moveFromBottom”?