0
<video width="480" height="320" controls>
    <source src="audiovisual/video.mp4" type="video/mp4"/>
    <source src="audiovisual/video.webm" type="video/webm"/>
    Your browser does not support the video tag.
</video> 

But the video is not showing in IE9

It is amazing that when I enter into the developer tool (pressing key F12) and change the value for the width or the height it appears immediately.

4

1 回答 1

0

很难找到它。

我将视频的代码移到正文的开头,它可以工作。所以我意识到这是这个元素的容器的问题。

我开始更改容器的 css,当我删除display:hidden;它时会显示视频(但我需要容器开始隐藏)

我所做的是将以前的代码更改为,width:0px; overflow:hidden;因此当我更改容器的宽度(使用 jQuery)时,它现在可以使用视频。

谢谢。

于 2013-10-24T15:53:03.047 回答