【发布时间】:2020-01-24 03:17:47
【问题描述】:
我遇到了与this, 相同的问题,但我正在尝试在<video/> 元素上解决此问题。
我想制作视频元素,有时是width: 100%,有时是height: 100%,按它的纵横比。
这是我的CSS
.remoteVideo-container {
position: fixed;
left: 0;
top: 0;
z-index: 0;
width: 100vw;
height: 100vh;
text-align: center;
background-color: rgb(45, 48, 53);
}
.remoteVideo {
object-fit: contain;
transform: scale(-1, 1);
}
这是我的 jsx
<div className="remoteVideo-container">
<video
className="remoteVideo"
autoPlay
ref={this.remoteVideo}
muted
></video>
</div>
结果:
【问题讨论】: