我不希望海报图像占据该视频的全部尺寸,但保持纵横比并居中。我怎样才能做到这一点?注意:这是一个片段。实际代码是用于嵌入视频的 reactjs 代码 sing react player。我将使用 config.file.attributes 将所需的属性发送到此处看到的 s 。使用style="object-fit=none"
作品,但反应玩家可能吗?
代码片段:
<!DOCTYPE html>
<html>
<body>
<h1>The video poster attribute</h1>
<video width="900" height="1240" poster="https://www.w3schools.com/images/w3schools_green.jpg" controls object-fit="none">
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
</body>
</html>