jQuery framework provide more flexible way to add more effects on a web page by using in-build methods. jQuery effects can be categorized in to following ways
Short Idea About Jquery Effects:
jQuery Effects provideย large number ofย methods for developing richย web application. Let we discuss aboutย jQuery effectย below.
Method | Description |
hide() | hides the selected elements. |
show() | displays the selected elements. |
toggle() | shows or hides the matched elements. |
fadein() | Display the matched elements by fading them to opaque. |
fadeout() | Hide the matched elements by fading them to transparent. |
fadeto() | Adjust the opacity of the matched elements. |
fadetoggle() | shows/hides the selectedย element. ie., toggles between the fadeIn() and fadeOut(). |
slidedown() | shows the matched elements with sliding motion. |
slidetoggle() | shows or hides the matched elements with slide. ie.,ย it is used to toggle between the slideUp() and slideDown(). |
slideup() | hides the matched elements with sliding motion. |
animate() | performs animation for the selected element. |
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. |
finish() | It stops, removes and complete all queued animation for the selected elements. |
queue() | Show or manipulate the queue of functions to be executed on the matched elements. |
stop() | stops the animation on the selected elements. |
Let usย discuss more aboutย effect one by one detailed way inย up-coming posts.
Leave A Comment