如何通过 Jquery 对话框小部件使用缓动

发布于 2024-12-24 17:12:35 字数 270 浏览 1 评论 0原文

我在 jquery UI 中使用 jquery 对话框小部件在模式对话框中显示表单。我想自定义动画,但除了按名称指定效果之外,我在选项中看不到任何内容。例如:

$( ".selector" ).dialog({ show: 'slide' });

我还注意到打开对话时效果的时间和屏幕变暗(模式设置为 true)不太匹配。该对话框保留在深色覆盖层下,直到效果结束。

有没有办法在对话框选项中自定义效果?也许使用缓动插件?

谢谢

I'm using the jquery dialog widget in the jquery UI to show a form in a modal dialog. I would like to customize the animation, but I don't see anything in the options other than specifying the effect by name. For example:

$( ".selector" ).dialog({ show: 'slide' });

I also noticed that the timing of the effect and the darkening of the screen (modal set to true) don't quite match when opening the dialogue. The dialog remains under the dark overlay until the effect is over.

Is there a way to customize the effect in the dialog options? Maybe use the easing plugin with it?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

瀟灑尐姊 2024-12-31 17:12:35

我认为您还可以指定提供哈希的其他参数:

$("#dialog").dialog({
  show: {effect: "fadeIn", duration: 5000}
});

fiddle here http://jsfiddle.net/dHs73/

I think you can also specify other parameters providing an hash:

$("#dialog").dialog({
  show: {effect: "fadeIn", duration: 5000}
});

fiddle here http://jsfiddle.net/dHs73/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文