1. Reference For jQuery Effect Methods
This ultimate reference tutorial comprises of complete list of jQuery effect methods. Effects are methods in jQuery programmming language, which are used to work with animations.
Following is the complete alphabetical list of jQuery effect methods used to create animations.
Method | Description |
animate() | Runs a custom animation on the selected elements |
clearQueue() | Removes all remaining queued functions from the selected elements |
delay() | Sets a delay for all queued functions on the selected elements |
dequeue() | Removes the next function from the queue, and then executes the function |
fadeIn() | Fades in the selected elements |
fadeOut() | Fades out the selected elements |
fadeTo() | Fades in/out the selected elements to a given opacity |
fadeToggle() | Toggles between the fadeIn() and fadeOut() methods |
finish() | Stops, removes and completes all queued animations for the selected elements |
hide() | Hides the selected elements |
jQuery.fx.interval | Sets the rate (in milliseconds) at which jQuery animations run globally |
jQuery.fx.off | Disables all jQuery animations globally when set to true |
jQuery.speed | Generates a settings object for use in defining custom animation behavior |
queue() | Shows the queued functions on the selected elements |
show() | Shows the selected elements |
slideDown() | Slides-down (shows) the selected elements |
slideToggle() | Toggles between the slideUp() and slideDown() methods |
slideUp() | Slides-up (hides) the selected elements |
stop() | Stops the currently running animation for the selected elements |
toggle() | Toggles between the hide() and show() methods |