我遇到了与此相同的问题,但我正在尝试在<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>
结果: