Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple attribute #11

Open
polikin opened this issue Oct 3, 2013 · 3 comments
Open

Multiple attribute #11

polikin opened this issue Oct 3, 2013 · 3 comments

Comments

@polikin
Copy link

polikin commented Oct 3, 2013

it is possible to animate multiple attribute?

like this:

@include transition(transform 0.8s ease, width 1s ease);
@include transition-delay(0s, 0.7s);

@jhardy
Copy link
Owner

jhardy commented Oct 11, 2013

Sounds what you are looking for is an animation and not a transition. Any more detail in what you are trying to do and maybe I could help you out a bit more.

@polikin
Copy link
Author

polikin commented Oct 11, 2013

I want to add a transition on different property with a different delay for each.

ex:
@include transition(width 0.3s ease, height 0.3s ease); @include transition-delay(0.6s, 3s);

but with ceaser, this only thing we can do is all or specific property (ex:width)
@include ceaser-transition(all,0.3s, $easeInOutCirc); or @include ceaser-transition(width,0.3s,$easeInOutCirc);

It will be nice if we can do it like this:
@include ceaser-transition((width 0.3s ease, height 0.6s ease),0.3s, $easeInOutCirc);

@jhardy
Copy link
Owner

jhardy commented Oct 12, 2013

Sorry misunderstood the previous request, this should be easy to do, I'll whip up a demo here in a bit.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants