我正在使用jQuery cycle2制作幻灯片,并正在使用autoheight feature/plugin。
我想缩短动画时间并查看the jquery.cycle2.autoheight.js plugin code,我看到了:
$.extend($.fn.cycle.defaults, {
autoHeight: 0, // setting this option to false disables autoHeight logic
autoHeightSpeed: 250,
autoHeightEasing: null
});
我通过cdnjs将Cycle2实现为CDN,所以我无法直接编辑代码,覆盖autoHeightSpeed
选项的正确方法是什么?
答案 0 :(得分:0)
加载循环插件后,在加载autoheight插件之前,您可以设置默认值
$.fn.cycle.defaults.autoHeightSpeed = 432432;