我有一个问题...我在我的网站中为视频生成iframe但是当我尝试打开此iFrame时,所有页面都打开了不仅是视频.. 这是我的iframe:
<iframe width="650" height="370" src="mysite.com/video/8/620" frameborder="0"></iframe>
我的生成iframe的功能:
function iframe() {
if ($this->uri->segment(3)) {
$videoid = (int) $this->uri->segment(3);
} else {
$videoid = 0;
}
$this->tpl->assign("theid", $videoid);
$this->tpl->assign("SITE_URL", config_item('site_url'));
$this->tpl->display('video/iframe.tpl');
}
请帮帮我
答案 0 :(得分:1)
您需要在页面中包含“不是网址”,其中包含视频。您应该直接包含视频。
<iframe width="650" height="370" src="mysite.com/video/8/620/videofile.mp4" frameborder="0"></iframe>
也许你想要使用视频标签:
<video>
<source src="movie.mp4" type="video/mp4" />
<source src="movie.webm" type="video/webm" />
</video>