Web Development
jQuery
Subjective
Aug 07, 2013
What is the use of animate method in jQuery ?
Detailed Explanation
animate() method performs a custom animation of a set of CSS properties.
The animate() method allows us to create animation effects on any numeric CSS property.
eg : $("#targetDiv").animate({
opacity: 0.4,
marginLeft: "0.6in",
fontSize: "3em",
borderWidth: "10px"
}, 1500);
Discussion (0)
No comments yet. Be the first to share your thoughts!
Share Your Thoughts