I am trying to keep the <div> centered on the screen but this fails.
Here is the code:
var self = $(this);
self.animate({
'top': ($(window).height() / 2) - (self.outerHeight() / 2),
'left': ($(window).width() / 2) - (self.outerWidth() / 2)
}, 600, 'swing', function () {
self.animate({
'width': '+=200px',
'height': '+=200px',
'top': ($(window).height() / 2) - (self.outerHeight() / 2), //NO UPDATE
'left': ($(window).width() / 2) - (self.outerWidth() / 2) //NO UPDATE
}, 600, 'linear');
});
So mainly after the second animation where the <div> grows by 200px on each direction, top and left stay the same from the first animation. I’d like the position to update as well.
What can be done here?
Do take into consideration than when running the following code:
The value you get from
self.outerHeight()is the absolute current value (without the added amount) as jQuery will increment the size slowly to give the impression of an animation.To make it work you must add the amount manually: