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
Add a nice way to define staggering animations. The current approach is that the user would have to define a custom animation-delay by himself:
.myrepeater.au-enter:nth-child(1) { -webkit-animation-delay: 1s; } .myrepeater.au-enter:nth-child(2) { -webkit-animation-delay: 2s; }
maybe we could add a new class with a delay suffix which gets parsed by the animator. Something like this:
.myrepeater.au-enter.au-stagger-100 { ... }
The text was updated successfully, but these errors were encountered:
Done with d57d22b
Sorry, something went wrong.
zewa666
No branches or pull requests
Add a nice way to define staggering animations. The current approach is that the user would have to define a custom animation-delay by himself:
maybe we could add a new class with a delay suffix which gets parsed by the animator. Something like this:
The text was updated successfully, but these errors were encountered: