Skip to content
This repository has been archived by the owner on Nov 15, 2019. It is now read-only.

Fails to resume if an element has two simultaneous animations. #5

Open
jimhigson opened this issue Dec 30, 2013 · 0 comments
Open

Fails to resume if an element has two simultaneous animations. #5

jimhigson opened this issue Dec 30, 2013 · 0 comments

Comments

@jimhigson
Copy link

Given code like this:

// animate two properties simultaneously but add separately:
$box.animate({left:300}, {queue:false});
$box.animate({width:100}, {queue:false});

// pause/resume using hover:
$box.hover(function() {
  $box.pause();
}, function() {
  $box.resume();
});

On resume, only the animation which was added second will continue.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant