Home >>jQuery Tutorial >jQuery – Effects
By using jQuery you can add many different effects on a web page. It allow us to quickly apply commonly used effects with a minimum configuration and effects can be categorized into hiding/showing, animation, fading and sliding effects.
These are the following jQuery table lists for creating animation effects.
Parameter | Description |
---|---|
animate() | It performs an animation on the selected elements |
clearQueue() | This method is used to removes all remaining queued functions from the selected elements |
delay() | it is used to Sets a delay for all queued functions on the selected elements |
dequeue() | This method is used to Removes the next function from the queue, and then executes the function |
fadeIn() | It is used to fades in the selected elements by adjusting their opacity |
fadeOut() | It is used to fades out the selected elements by adjusting their opacity to 0 |
fadeTo() | It is used to fades in/out the selected elements to a given opacity |
fadeToggle() | Toggles between shows or hides the matched element ( fadeIn() and fadeOut()) methods |
finish() | This method is used to stops, removes and completes queued animations for the selected elements |
hide() | It is used to hides the selected/matched elements |
queue() | This method is used to manipulate or Shows the queued functions on the selected elements |
show() | It is used to display/Shows the selected elements |
slideDown() | It is used to slides-down (shows) the selected elements |
slideToggle() | It is used to toggles between the slideUp() and slideDown() methods |
slideUp() | It is used to Slides-up (hides) the selected elements |
stop() | It is used to stops the currently running animation by selecting elements |
toggle() | This method is used to toggles between the hide() and show() methods |