Answer Posted / chaitanya
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:
Hide Copy Code
(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,
Hide Copy Code
$("btnClick").click(function(){
$("#dvBox").animate({height:"100px"});
});
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is meant by the term ‘theming’ in jquery mobile? : jQuery Mobile
Is jquery still relevant 2019?
Tell me does jquery 2.0 supports ie? : jquery mobile
In jquery, what is the meaning of toggle?
What is jquery a client or server scripting?
Where can we download JQuery?
What is .bind()? : jquery mobile
What are your tools of choice to get the jquery job done?
What are the paremeter of jquery ajax method?
Do we need to add jQuery file in both Master and Content page?
Explain cdn in jquery?
Define jquery filter?
How can you add a jquery library in your project?
List the advantage of using minimized version of jquery?
How do you install/use jquery in a project. What is the minimum setup needed to start using jquery.