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

.transition(transform 0.7s .3s ease) > repeated properites #144

Open
Leagnus opened this issue Jan 25, 2015 · 2 comments
Open

.transition(transform 0.7s .3s ease) > repeated properites #144

Leagnus opened this issue Jan 25, 2015 · 2 comments

Comments

@Leagnus
Copy link

Leagnus commented Jan 25, 2015

.transition(transform 0.3s .5s ease);
makes
...
transition: -webkit-transform 0.7s 0.3s ease,-moz-transform 0.7s 0.3s ease,-o-transform 0.7s 0.3s ease,transform 0.7s 0.3s ease;

@planttheidea
Copy link

This is correct, because the transform property itself is prefixed. You need to replicate all prefixes to apply to all respective transforms.

@Leagnus
Copy link
Author

Leagnus commented Sep 24, 2015

no, i mean 2 times repeat
-webkit-transition: -webkit-transform 0.7s 0.3s ease;
-moz-transition: -moz-transform 0.7s 0.3s ease;
-o-transition: -o-transform 0.7s 0.3s ease;
transition: -webkit-transform 0.7s 0.3s ease,-moz-transform 0.7s 0.3s ease,-o-transform 0.7s 0.3s ease,transform 0.7s 0.3s ease;

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