Does display:none keep elements from loading?

前端 未结 2 866
眼角桃花
眼角桃花 2020-12-10 17:41

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

相关标签:
2条回答
  • 2020-12-10 18:05

    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.

    0 讨论(0)
  • 2020-12-10 18:29

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

    0 讨论(0)
提交回复
热议问题