PHP 中的页面加载屏幕
我正在开发一个加载更多图像的 Php 页面,因此我想在页面当前正在加载时向用户显示。我已经尝试过,但它无法正常工作。
加载图像应该一直运行,直到所有图像都加载完毕。如何实现这一点?
I am working on a Php page which loads more images,so I want to show the User as the Page is currently Loading. I have tried but it does not working correctly.
The loading image should be run until all image gets load.How to implement for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以考虑输出缓冲。
示例:
首先输出:
然后缓冲其余输出,并在准备好时通过刷新将其发送到浏览器。
当此输出在浏览器中呈现时,您可以使用内联样式来隐藏之前的 html 块。
第二个输出中的示例。
You could consider output buffering.
Example:
Output this first:
Then buffer rest of output and send send when ready to the browser by flushing it.
When this ouput is rendered in the browser you can use an inline style to hide the previous html block.
Example in the second output.
尝试
window.onload
事件。一个例子:Try
window.onload
event. An example: