top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How do you implement animation functionality?

+4 votes
226 views
How do you implement animation functionality?
posted Jul 9, 2015 by Manikandan J

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

The .animate() method allows us to create animation effects on any numeric CSS property. This method changes an element from one state to another with CSS styles. The CSS property value is changed gradually, to create an animated effect.

Syntax is:
(selector).animate({styles},speed,easing,callback)

styles: Specifies one or more CSS properties/values to animate.
duration: Optional. Specifies the speed of the animation.
easing: Optional. Specifies the speed of the element in different points of the animation. Default value is "swing".
callback: Optional. A function to be executed after the animation completes.

Simple use of animate function is,

$("btnClick").click(function(){
  $("#dvBox").animate({height:"100px"});
});
answer Jul 9, 2015 by Shivaranjini
Similar Questions
+4 votes

How do you stop following in jQuery -

currently-running animation, 
remove all queued animations, and 
complete all animations for the matched elements
...