目前,我正在尝试将一些 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 对此的支持。您如何将其创建为包含“moveFromBottom”的mixin?