web-dev-qa-db-ja.com

複数のcss遷移をコンパスします

このような複数のcss遷移をどのように行うことができますか Jsfiddle with Compass

私がやろうとしているのは、コンパスを使って以下のコードを基本的に書くことです。

-webkit-transition: top 0.3s ease-out, background .9s .5s ease-out; 
   -moz-transition: top 0.3s ease-out, background .9s .5s ease-out; 
     -o-transition: top 0.3s ease-out, background .9s .5s ease-out; 
        transition: top 0.3s ease-out, background .9s .5s ease-out;
19
halliewuud

これはあなたが探しているものですか? http://compass-style.org/reference/compass/css3/transition/#mixin-transition

@include transition( top 0.3s ease-out, background .9s .5s ease-out );

48
Jackie