jQuery Effects – Animation
jQuery Animations – The animate() Method
The jQuery animate() method is used to create custom animations.
Syntax:
The required params parameter defines the CSS properties to be animated.
The optional speed parameter specifies the duration of the effect. It can take the following values: “slow”, “fast”, or milliseconds.
The optional callback parameter is a function to be executed after the animation completes.
The following example demonstrates a simple use of the animate() method; it moves a <div> element to the left, until it has reached a left property of 250px:
Example
$(“div”).animate({left:’250px’});
});
jQuery animate() – Manipulate Multiple Properties
Notice that multiple properties can be animated at the same time:
Example
$(“div”).animate({
left:’250px’,
opacity:’0.5′,
height:’150px’,
width:’150px’
});
});
Yes, almost! However, there is one important thing to remember: all property names must be camel-cased when used with the animate() method: You will need to write paddingLeft instead of padding-left, marginRight instead of margin-right, and so on.
Also, color animation is not included in the core jQuery library.
jQuery animate() – Using Relative Values
It is also possible to define relative values (the value is then relative to the element’s current value). This is done by putting += or -= in front of the value:
Example
$(“div”).animate({
left:’250px’,
height:’+=150px’,
width:’+=150px’
});
});
jQuery animate() – Using Pre-defined Values
You can even specify a property’s animation value as “show”, “hide”, or “toggle”:
Example
$(“div”).animate({
height:’toggle’
});
});
jQuery animate() – Uses Queue Functionality
By default, jQuery comes with queue functionality for animations.
This means that if you write multiple animate() calls after each other, jQuery creates an “internal” queue with these method calls. Then it runs the animate calls ONE by ONE.
So, if you want to perform different animations after each other, we take advantage of the queue functionality:
Example 1
var div=$(“div”);
div.animate({height:’300px’,opacity:’0.4′},”slow”);
div.animate({width:’300px’,opacity:’0.8′},”slow”);
div.animate({height:’100px’,opacity:’0.4′},”slow”);
div.animate({width:’100px’,opacity:’0.8′},”slow”);
});
The example below first moves the <div> element to the right, and then increases the font size of the text:
Example 2
var div=$(“div”);
div.animate({left:’100px’},”slow”);
div.animate({fontSize:’3em’},”slow”);
});