wijmo.carousel.wijcarousel Namespace > options type : animation Option |
The animation option determines whether and how images are scroll in the carousel. It defines the animation effect and controls other aspects of the widget's animation, such as duration and easing. Set the disable attribute to true in order to disable the animation effect. For a live example, see the Carousel Animation page in the Explore sample.
Javascript (Usage) | |
---|---|
$(function () { // Get value var value; // Type: object value = $(".selector").wijcarousel("option", "animation"); // Set value var newValue; // Type: object $(".selector").wijcarousel("option", "animation", newValue); }); |
Javascript (Specification) | |
---|---|
|
$("#element").wijcarousel( { animation { queue: true, disable: false, duration: true, easing: "easeOutCubic" } } );