我刚刚创建了新网页并为其设置了托管。该网页包含一个应播放的视频。但是,视频只是不断地加载,什么也没做。
这是因为必须从Web服务器下载视频吗?
代码如下:
function mapstyle() {
wp_register_style('mapstyle', plugins_url('assets/css/mapstyle.css' , __FILE__ ));
wp_enqueue_style('mapstyle');
}
add_action( 'admin_init','mapstyle');
该代码在本地可以正常运行。
谢谢!
答案 0 :(得分:0)
如果您在源目录中获取视频,则可能要使用:
html
<video id="video" width="600" height="400" controls autoplay="autoplay">
<source src="/fire.mp4" type="video/mp4" />
</video>
是的,我在源代码的源代码fire.mp4之前添加了一个反斜杠,因为/用于从根目录获取内容。 当然,仅当您在与html文件相同的目录中具有“ fire.mp4”时,这才有效。 如果它在其他目录中,请执行以下操作:
html
<video id="video" width="600" height="400" controls autoplay="autoplay">
<source src="/path/to/dir/fire.mp4" type="video/mp4" />
</video>