Skip to content Skip to sidebar Skip to footer

Jquery Animate Function Initialize The Value

$(element).delay(2000).animate( { scale: 1, }, { duration: 1000, step: function(now) { scaleVal = now; $(element).attr('

Solution 1:

you need to use css function

$(ele).css('scale', 0.5).animate({scale:1});

Post a Comment for "Jquery Animate Function Initialize The Value"