We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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.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;
The text was updated successfully, but these errors were encountered:
This is correct, because the transform property itself is prefixed. You need to replicate all prefixes to apply to all respective transforms.
Sorry, something went wrong.
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;
No branches or pull requests
.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;
The text was updated successfully, but these errors were encountered: