Improved some examples

This commit is contained in:
Elton Mesquita 2018-09-24 11:51:18 -03:00 committed by GitHub
parent 6c9bd328c5
commit 6155392f49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -191,10 +191,10 @@ $('#yourElement').animateCss('bounce', function() {
You can change the duration of your animations, add a delay or change the number of times that it plays:
```css
#yourElement {
-vendor-animation-duration: 3s;
-vendor-animation-delay: 2s;
-vendor-animation-iteration-count: infinite;
.yourElement {
animation-duration: 3s;
animation-delay: 2s;
animation-iteration-count: infinite;
}
```