This repository was archived by the owner on Nov 15, 2019. It is now read-only.
This repository was archived by the owner on Nov 15, 2019. It is now read-only.
Open
Description
Consider this example :
<div class="element" style="position:absolute;top:200px">Hello</div>
function toUp() {
$('.element').animate({top: '+=50px'}, 800, 'swing', toDown);
}
function toDown() {
$('.element').animate({top: '-=50px'}, 800, 'swing', toUp);
}
toUp();
$('.element').hover(function() {
$(this).pause();
}, function() {
$(this).resume();
});
The animation is paused/resumed, but we've got an additional offset each time.
Metadata
Metadata
Assignees
Labels
No labels