【发布时间】:2018-05-26 08:52:48
【问题描述】:
我有一个适合容器的视频,宽度为 100%,固定高度为 750 像素。视频已设置为 object-fit:fill,这可以在所有浏览器上完美运行,除了......你猜对了 IE!我知道 IE 不支持 object-fit 并想知道是否有人知道解决方法?
#mainContainer {
width: 100%;
height: 750px;
border-bottom: solid 4px #9B51E0;
position: relative;
}
#mainVideo {
width: 100%;
height: 750px;
object-fit: fill;
position: absolute;
opacity: 0.85;
}
<div id="mainContainer">
<video id="mainVideo" autoplay loop>
<source src="video.mp4">
</video>
</div>
【问题讨论】: