我想使用此示例使用Google vrview-web:googlevrview
如何在src
代码中设置iframe
属性?
以下是链接中给出的示例:
<iframe width="100%" scrolling="yes" allowfullscreen src="https://storage.googleapis.com/vrview/examples/video/index.html?video=examples/video/congo_2048.mp4&is_stereo=true"></iframe>
现在我必须在src中设置我的视频网址,如下所示:
<iframe width="100%" scrolling="yes" allowfullscreen src="<?php echo VIDEO_URL.$data["video"]; ?>&is_stereo=true"></iframe>
它不显示视频。
如果我使用以下iframe
标记:
<iframe width="100%" scrolling="yes" allowfullscreen src="https://storage.googleapis.com/vrview/examples/video/index.html?video=MY_VIDEO&is_stereo=true"></iframe>
但是,它会在我的页面中打印这些数据:
答案 0 :(得分:0)
假设VIDEO_URL持有此:
https://storage.googleapis.com/vrview/examples/video/index.html?video=
您的iframe不能只打印HTML。请检查您呈现的HTML / DOM或iframe src值是否正确且未损坏。
此外,视频所在的网站必须允许CORS。跨源资源共享。否则,Google的脚本将不会在VR模式下将视频加载到iframe中。