来讲一下jQWidgets jqxWindow的showAnimationDuration属性。
showAnimationDuration属性
showAnimationDuration
属性是在向用户展示一个窗口时,窗口动画效果的持续时间。默认值为’ 250’,单位为毫秒。
语法
showAnimationDuration: Number
示例1
在这个例子中,我们将窗口的showAnimationDuration属性设置为1秒钟,使动画运行得更缓慢。
$('#jqxwindow').jqxWindow({
width: 200,
height: 200,
showAnimationDuration: 1000,//1秒
autoOpen: true,
animationType: 'fade',
theme: 'energyblue',
content: 'Welcome to jQWidgets'
});
示例2
在这个例子中,我们将窗口的showAnimationDuration属性设置为0,去掉动画效果。
$('#jqxwindow').jqxWindow({
width: 200,
height: 200,
showAnimationDuration: 0,//0毫秒
autoOpen: true,
animationType: 'fade',
theme: 'energyblue',
content: 'Welcome to jQWidgets'
});
到这里,我们就了解了showAnimationDuration属性的用法。希望这篇攻略能够对你有所帮助。