You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you use the standard jQuery chaining mechanism, each animation will fire at the same time so you have to include the next animation in the callback.
70
+
```js
71
+
$('#your-id').animateCSS('fadeInUp', function() {
72
+
console.log('Boom! First animation Complete');
73
+
$(this).animateCSS("fadeOutUp", function(){
74
+
console.log('Boom Boom! Second animation Complete');
75
+
})
76
+
});
77
+
```
78
+
79
+
### Offset animations
80
+
You can offset animations by using the delay mechanism
0 commit comments