display:none 是否会阻止元素加载?

发布于 2024-09-30 15:32:15 字数 87 浏览 6 评论 0原文

我有一个大视频文件,我想将其放在我的主页上。我不希望它拖延加载时间,所以我想我可以将其设置为 display:none ,然后在页面加载后更改显示。这行得通吗?

I have a large video file that I want to put on my main page. I don't want it to bog down the loading time, so I was thinking I could just set it to display:none and then change the display after the page loads. Would this work?

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

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

发布评论

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

评论(2

只是一片海 2024-10-07 15:32:15

这行得通吗?

没有。 display: none 只会阻止元素显示;尽管如此,它还是会被加载。

您可以在您选择的元素检查器中观察这一情况的发生(例如在 Firebug 或 IE8 的开发工具中)。

最好的方法可能是随后使用 JavaScript 创建 Video 元素,或者 - 如果您想要一个万无一失的解决方案,以防 JS 关闭 - 您可以使用 iframe 在用户单击链接时加载视频。

Would this work?

Nope. display: none will only prevent the element from being displayed; it will be loaded nevertheless.

You can watch this happen in the element inspector of your choice (e.g. in Firebug or IE8's dev tools).

The best way is probably to create the Video element using JavaScript afterwards, or - if you want a fail-safe solution in case JS is turned off - you could use an iframe that loads the video if the user clicks a link.

梦明 2024-10-07 15:32:15

显示与加载的真实速度无关。
然而,它可能会像启动页面一样影响速度的外观。

display has nothing to do with true speed of loading.
However it may effect appearance of speed in the same way a splash page.

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