0
我使用vimeo自動播放帶有HTML5的視頻和後備廣告。html5視頻並回退到iframe不工作
<video width="100%" height="100%" autoplay="autoplay">
<source src="video/mp4.mp4" type="video/mp4" />
<source src="video/ogv.theora.ogv" type="video/ogg" />
<iframe src="http://player.vimeo.com/video/43010500?title=0&byline=0&portrait=0&color=ffffff&autoplay=1" width="100%" height="100%" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</video>
這適用於Safari和Firefox,但在Chrome上有一個回顯。我拿出了vimeo iframe,回聲消失了,我的猜測是chrome使用的是html5video,並且iframe視頻也在其下面隱藏起來。
如果瀏覽器無法播放html5視頻,最好的方法是備用iframe。
謝謝。
謝謝,我從來沒有使用Modernizr的。但這是完美的。 – uriah