带 JQuery 的预加载器或带 jQuery 进度栏的高级页面加载行为
我们有一个 jQuery 进度条。有没有一种方法可以让进度条显示包含 PHP、CSS 和 PHP 的 HTML 页面的加载情况。 JavaScript 及其全部内容?
就像预加载器一样,当页面被下载并完全呈现后,然后显示它。
如果没有进度条,我们可以用 jQuery 制作一个预加载器吗?
We have a jQuery Progress Bar. Is there a way we can have the progress bar displaying the loading of an HTML page which has PHP, CSS & JavaScript and all in it?
Like a preloader and when the page has been downloaded and rendered fully then display it.
If not with progress bar can we make a preloader with jQuery?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看看我发现了什么
jQuery 预加载器 和 这里是演示
look what i found
jQuery Preloader and here is the demo
有一次..我尝试创建这个,但它并不漂亮。我在页面上列出了我需要的所有内容,并在加载时一一增加了进度条。这是一条非常长的链条。这是我所做的示例。
Once.. I tried to create this, but It was not pretty. I listed all the things I need to have on a page and increased the progress bar One by one as it was loaded. It was very tremendously long chain. Here is a sample of what I did.
最简单且仍然性感的方式:
隐藏所有内容,直到 DOM 准备好,除了页面中心的加载图标。然后,当内容加载时,删除加载图标:
如下所示:
编辑: 您需要一个 ajax loader gif 作为#preLoader 的背景图像放置
Easiest and still sexy way:
hide all the content until the DOM is ready, except for the loading icon which is centered in the page. Then when the content loads, remove the loading icon:
something like this:
EDIT: You'll need an ajax loader gif to place as the background image of #preLoader