jQuery Animation Effect Methods

jQuery effect animation methods; In this tutorial, i am going to show you what is jQuery animation effect methods and how to use jQuery animation effect methods with HTML elements.

jQuery Animation Effect Methods

jQuery Effects can be used to creating animation effects on webpages like show or hide elements, fade elements in and out with webpages.

In other words, the effect of jQuery can give your webpages a very professional and dynamic look.

Types of jQuery Animation Effect Method

Display Effects

Hide Effect
Show Effect
Toggle Effect

Fading Effects

Fadein
Fadeout
FadeToggle
FadeTo

Sliding Effects

SlideDown
SlideUp
SlideToggle

Other Effects

Animate
delay

There are following lists of all the jQuery effect methods for creating effective animation on webpages with professional and dynamic look.

MethodDescription
animate()performs animation.
clearQueue()It is used to remove all remaining queued functions from the selected elements.
delay()sets delay execution for all the queued functions on the selected elements.
dequeue()It is used to remove the next function from the queue, and then execute the function.
fadein()shows the matched elements by fading it to opaque. In other words, it fades in the selected elements.
fadeout()shows the matched elements by fading it to transparent. In other words, it fades out the selected elements.
fadeto()adjusts opacity for the matched element. In other words, it fades in/out the selected elements.
fadetoggle()shows or hides the matched element. In other words, toggles between the fadeIn() and fadeOut() methods.
finish()It stops, removes and complete all queued animation for the selected elements.
hide()hides the matched or selected elements.
queue()shows or manipulates the queue of methods i.e. to be executed on the selected elements.
show()displays or shows the selected elements.
slidedown()shows the matched elements with slide.
slidetoggle()shows or hides the matched elements with slide. In other words, it is used to toggle between the slideUp() and slideDown() methods.
slideup()hides the matched elements with slide.
stop()stops the animation which is running on the matched elements.
toggle()shows or hides the matched elements. In other words, it toggles between the hide() and show() methods.

Recommended jQuery Tutorial

Leave a Comment