指定 jquery UI 对话框动画的选项?
我知道当你调用对话框时你可以使用
.dialog({
show: 'fade',
hide: 'fade'
});
但是有对选项的支持吗?
例如
.dialog({
show: {effect: 'fade', speed: 1000},
hide: {effect: 'fade', speed: 500}
});
,甚至
.dialog({
show: {effect: 'fade', {speed: 1000}},
hide: {effect: 'fade', {speed: 500}}
});
我正在使用 1.8.14
I know when you call the dialog you can use
.dialog({
show: 'fade',
hide: 'fade'
});
But is there any support for options?
e.g.
.dialog({
show: {effect: 'fade', speed: 1000},
hide: {effect: 'fade', speed: 500}
});
or even
.dialog({
show: {effect: 'fade', {speed: 1000}},
hide: {effect: 'fade', {speed: 500}}
});
I am using 1.8.14
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
持续时间
而不是速度
。像这样...您还可以包含诸如
easing
、queue
等选项,甚至是complete
回调函数。看起来大多数选项都被.animate()
函数接受在show
和hide
属性中接受。Try
duration
instead ofspeed
. Like this...You can also include options like
easing
,queue
, and even acomplete
callback function. It looks like most of the options accepted by the.animate()
function are accepted in theshow
andhide
properties.