wijmo.superpanel.wijsuperpanel Namespace > options type : animationOptions Option |
The animationOptions function determines whether or not the animation is shown. If true, it defines the animation effect and controls other aspects of the widget's animation, such as duration, queue, and easing.
Javascript (Usage) | |
---|---|
$(function () { // Get value var returnsValue; // Type: wijmo.superpanel.superpanel_animation returnsValue = $(".selector").wijsuperpanel("option", "animationOptions"); // Set value var newValue; // Type: wijmo.superpanel.superpanel_animation $(".selector").wijsuperpanel("option", "animationOptions", newValue); }); |
Javascript (Specification) | |
---|---|
var animationOptions : superpanel_animation; |
$('#superPanel').wijsuperpanel({
animationOptions: {
disabled: false,
duration: 1000,
easing: easeInQuad
}
});