this
is
some
HTML
| Name | Default | Description |
|---|---|---|
| Property | ||
| duration | 400 | Duration of the animation. |
| delay | 5000 | Delay between steps when auto is on. |
| easing | swing | Specify easing for the transition. Requires jquery easing plugin for fade and animate. |
| auto | true | Enable automatic transition. |
| animate | fadeOut | Pass an object of css properties to be animated for the transition (uses jquery's animate method). |
| effect | null | Possible values: blind, clip, drop, explode, fade, fold, puff. Requires jquery ui effects plugin. |
| css3 | null | Possible values: all out and exit transitions. Requires animate.css. |
| Event | ||
| onFade(index) | Occurs just before the animation starts. Gives you the index of currently animated item. (index is zero based) | |
| onAfterFade(index) | Occurs after the animation is complete. Gives you the index of the current item. (index is zero based) | |
| Method | ||
| fadeTo(index) | Go to the specified item. (index is zero based) | |
| next() | Go to the next item. | |
| prev() | Go to the previous item. | |
| stop() | Pause the automatic transition. | |
| start() | Restart the automatic transition. | |