jQuery.wijmo.wijaccordion Namespace > options type : animated Field |
Default value: 'slide'
Sets the animation easing effect that users experience when they switch between panes.
Javascript (Usage) | |
---|---|
var value; // Type: string value = jQuery.wijmo.wijaccordion.options.animated; |
Javascript (Specification) | |
---|---|
|
//Create your own animation: jQuery.wijmo.wijaccordion.animations.custom1 = function (options) { this.slide(options, { easing: options.down ? "easeOutBounce" : "swing", duration: options.down ? 1000 : 200 }); } $("#accordion3").wijaccordion({ expandDirection: "right", animated: "custom1" });