Come è possibile eseguire più transizioni css come questa Jsfiddle con Compass?Compass multiple trans css
Quello che sto cercando di fare è basicamente scrivere questo codice qui sotto con Bussola.
-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;
Funziona ancora per te? Mi è venuto in mente anche questo, ma quello che ottengo è la transizione: i primi 0.3 secondi di alleggerimento in background .9s .5s disinvoltura; '. Lascia fuori la virgola! È un bug (noto)? [Sto usando 'compass 0.13.alpha.12'] – MMachinegun
@marczking non sono sicuro se https://github.com/Igosuki/compass-mixins/issues/34 sia correlato. funziona per me se passo nelle liste: '@include transition ((top 0.3s easy-out), (background 0.9s easy-out)); – chemoish