Effect
hide / show
jQuery has some easy-to-implement effects to create animations.With jQuery, you can hide and show HTML elements with the hide() and show() methods
|
speed in milliseconds.
fade
JQuery has -
- fadeIn()
- fadeOut()
- fadeToggle()
- fadeTo()
slide
Slide methods:
- slideDown()
- slideUp()
- slideToggle()
animate
The animate()
method lets you animate to a set value, or to a value relative to the current value.
You need to define the CSS properties to be animated as its parameter in JSON format ("key":"value" pairs).
- Multiple properties can be animated at the same time by separating them with
commas
.
stop
callback
chaining
Powered by:
@code4mk