我使用HTML 5視頻標籤來顯示視頻作爲我的網站桌面英雄形象。它在鉻和火狐中毫無問題地工作,幾乎立即加載。但在IE 11和我假設較早的版本中,大約需要10秒才能加載。我不知道爲什麼會這樣。 MP4視頻爲16MB,其他格式較小。HTML 5視頻加載非常緩慢在IE 11
<video autoplay loop class="hero-video">
<source src="/img/10_Seconds_w_o_Matte.mp4" type="video/mp4" codecs="avc1.4D401E, mp4a.40.2" />
<source src="/img/10_Seconds_w_o_Matte.ogg" type="video/ogg" />
<source src="/img/10_Seconds_w_o_Matte.webm" type="video/webm" />
<source src="/img/hero2_img.jpg" />
Your browser does not support the video tag. I suggest you upgrade your browser.
</video>
我想你回答了你自己的問題 - 「mp4視頻是16MB,其他格式更小」。 –
我相信Chrome加載mp4,儘管 – Columbus