ABOUT
JQUERY EFFECTS AND ANIMATIONS
In this app, you will learn how to create common effects that are used on the web and mobile by using jQuery methods
- show() / hide() / toggle()
- fadeIn() / fadeOut() / fadeToggle()
- slideUp() / SlideDown() / slideToggle()
And how to create and control animations using jQuery animate() method.
Like Flash, Edge Animate, CSS animation, Greensock Animation Platform (GSAP), etc., jQuery animation is created by using the following steps:
- Create an object (style and position it using CSS)
- Give the object a name (with a CSS ID or Class) if necessary or use the element name (e.g., h1)
- Tell the object to do something (with jQuery Effects and Animation Methods)