当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery UI Resizable animateEasing用法及代码示例


用法:

animateEasing
类型:String
默认:"swing"
使用 animate 选项时应用哪个 easing

代码示例:

使用指定的animateEasing 选项初始化可调整大小:

$( ".selector" ).resizable({
  animateEasing: "easeOutBounce"
});

初始化后获取或设置animateEasing选项:

// Getter
var animateEasing = $( ".selector" ).resizable( "option", "animateEasing" );
 
// Setter
$( ".selector" ).resizable( "option", "animateEasing", "easeOutBounce" );

相关用法


注:本文由纯净天空筛选整理自jqueryui.com大神的英文原创作品 Resizable animateEasing。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。