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
Velocity animations do not listen to the stop command when the queue argument is set to false.
// Get nodevarnode=document.getElementById('animate');// Start animationVelocity(node,{translateX: [500,0],},{duration: 10000,queue: false,// No exception when this is true});// Stop animation before completionVelocity(node,'stop');// Throws: Uncaught TypeError: Cannot read property 'length' of null
Velocity animations do not listen to the stop command when the
queue
argument is set tofalse
.Codepen
The text was updated successfully, but these errors were encountered: