I am writing a script using a JQuery animation framework. In this scenario I need to have a sequence of different animations. When a new animation starts, I need to change the background image of the page.
The animation framework (it's called JSTween) provides the following callbacks:
onStart: function () {},
onStop: function () {}
I'm looking for a JQuery implementation for the following pseudocode:
onStart: function () {
load new background;
}
onStop: function () {
// This animation has ended, about four seconds have passed
on new background loaded: {
// Change background
}
// Start new animation async
}
I've been looking for $.when and similar tools, but I cannot figure out how to use them correctly.