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
Hi - I have an animation chained with other animations:
elem.animate({
delay: delay1,
duration: duration1,
})
.opacity(1)
.animate({
delay:delay2,
ease: '>',
duration: duration2,
})
.fill({
opacity: 0.3,
})
.during(function (pos, morph, eased, situation) {
//this triggers at start of delay
})
.after((situation) => {
//this triggers at end of anim
});
});
And I want to trigger an event after the delay2, but before the second animation completes. Is this possible, or will I need to use a timeout or something?
The text was updated successfully, but these errors were encountered:
Hi - I have an animation chained with other animations:
And I want to trigger an event after the delay2, but before the second animation completes. Is this possible, or will I need to use a timeout or something?
The text was updated successfully, but these errors were encountered: