我正在将一个预建网站转换为Wordpress网站。有问题的背景视频无需使用Wordpress即可完美加载-但在转换页面后无法加载。
使用HTML和CSS
<video autoplay muted loop id="myVideo">
<source src="rain.mp4" type="video/mp4">
</video>
#myVideo {
position: fixed ;
right: 0 ;
bottom: 0 ;
min-width: 100% ;
min-height: 100% ;
z-index: -2 ;
}
检查控制台时,我看到
Failed to load the resource:8888/wordpress/about/rain.mp4:1 Failed to load resource: the server responded with a status of 404 (Not Found)
我在做什么错?我试图避免安装或使用Wordpress插件-因为我不想使事情变得比他们需要的复杂。
感谢您的时间!