In jQuery we can chain multiple effects together in a single line. For example $(“p”).slideDown().slideUp() this will make the paragraph appear with a slide down… [Read More]
jQuery Callback Function
jQuery callback function executes when the effect is complete. In the previous tutorials we have discussed several jQuery effects, each of those methods accept callback… [Read More]
jQuery Effects – Stop Animations
jQuery stop() method is used to stop an animation or a jQuery effect before it is finished. jQuery stop() method Syntax $(selector).stop(clearQueue, goToEnd); clearQueue is… [Read More]
jQuery animate()
jQuery animate() method is used to create custom animations. jQuery animate() Syntax $(selector).animate({parameters}, speed, callback_function); $(selector) is to select html element on which this animation… [Read More]
jQuery slideToggle()
jQuery slideToggle() method toggles between slideUp() and slideDown() methods. If the html elements are slid down then this method will slide them up and if… [Read More]
jQuery slideUp()
jQuery slideUp() method is used to gradually disappear an html element with a slide up effect. You can think of it as a reverse of… [Read More]
jQuery slideDown()
jQuery slideDown() method is used to gradually make the selected element appear on an html page with the slide down effect. jQuery slideDown() Syntax $(selector).slideDown(speed,… [Read More]
jQuery fadeTo() Method
In this tutorial, we will discuss fadeTo() method, which is used to adjust the opacity of html elements. jQuery fadeTo() Method Syntax $(selector).fadeTo(speed, opacity, callback_function);… [Read More]
jQuery fadeToggle() Method
jQuery fadeToggle() method is used to toggle between fadeIn() and fadeOut() effects. If the selected elements are faded out, the fadeToggle will fade in them,… [Read More]
jQuery fadeOut() Effect
jQuery fadeOut() method is used to fade out the selected elements of the html page. It changes the opacity of the selected element to 0… [Read More]
- « Previous Page
- 1
- …
- 3
- 4
- 5
- 6
- Next Page »