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
In the example below the items should slide in one at a time using the stagger class:
stagger
<div class="slideInLeft stagger" ng-repeat="message in home.messages"> <p>{{ message.$value }}</p> </div>
Adding the slow or fast class overrides the stagger class. This causes all the items to slide in at the same time.
slow
fast
<div class="slideInLeft stagger slow" ng-repeat="message in home.messages"> <p>{{ message.$value }}</p> </div>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the example below the items should slide in one at a time using the
stagger
class:Adding the
slow
orfast
class overrides thestagger
class. This causes all the items to slide in at the same time.The text was updated successfully, but these errors were encountered: