【发布时间】:2022-07-15 16:58:19
【问题描述】:
我正在关注这个 CSS Trick 博客,为 react 项目设置背景视频,但它不起作用。
https://css-tricks.com/full-page-background-video-styles/
//Video.jsx
<video playsinline autoplay muted loop poster="polina.jpg" id="bgvid">
<source src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" type="video/mp4">
</video>
//index.css
#bgvid {
object-fit: cover;
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
}
【问题讨论】:
-
请澄清您的具体问题或提供其他详细信息以准确突出您的需求。正如目前所写的那样,很难准确地说出你在问什么。
标签: css reactjs video background