JQuery加载对话框效果
过去我使用 YUI 容器来实现 LOADING 效果。请参阅此链接:
http://developer.yahoo.com /yui/examples/container/panel-loading_clean.html
但有人建议我使用 jQuery。谁能告诉我任何链接或代码来在 jquery 中创建像 YUI 提供的加载效果吗?
谢谢,拉维·巴蒂亚
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为了(轻松)获得此功能,您需要使用 jQuery UI。
您需要组合它们包含的两个小部件才能复制该效果。
您需要将 进度条 放在 对话框。
要获得灰色背景效果,您需要启用对话框上的“modal”属性。
请参阅 jQuery UI 文档和演示以获取更多信息,因为我不是 jQuery UI 专家。
In order to get this functionality (easily), you will need to use jQuery UI.
You'll need to combine two of the widgets they have included in order to replicate that effect.
You'll need to put a Progress Bar inside of a Dialog.
To get the grayed out background effect, you'll need to enable the 'modal' attribute on the dialog.
Please see the jQuery UI documentation and demos for more info, as I'm not an expert with jQuery UI.
这个 jQuery 插件可能就是您正在寻找的 http://malsup.com/jquery/block/#page ?
This jQuery plugin might be what you are looking for http://malsup.com/jquery/block/#page?
是的,您可以通过结合使用 jQuery UI 进度条 和 对话框。可能还有一个 jQuery 插件可以用来实现类似的效果。
Yes, you can do this by using a combination of the jQuery UI progressbar and dialog. There may also be a jQuery plugin that you can use to achieve a similar effect.