var instance; // Type: wijmo.accordion.WijAccordionOptions; var value; // Type: any value = instance.animated;
var animated : any;
Sets the animation easing effect that users experience when they switch between panes.
var instance; // Type: wijmo.accordion.WijAccordionOptions; var value; // Type: any value = instance.animated;
var animated : any;
//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" });