无法在 iframe 中为 Flash 视频切换全屏吗?

发布于 2024-11-29 16:05:20 字数 259 浏览 0 评论 0原文

我正在使用嵌入代码进行直播,像 youtube 这样的嵌入代码工作得很好,

但其中一些我必须使用 iframe 等代码,全屏功能不起作用。

<iframe src="linkhere" width="600" height="450"/> 

我无法将视频切换为全屏,

如果他们单击该选项,是否有任何可能的方法使其全屏?

或者是否会使用类似于 iframe 的任何其他嵌入代码?

I'm using embed code to do live stream and the embed code like youtube one works perfectly

but some of them I have to use code such as iframe the fullscreen feature doesn't work.

<iframe src="linkhere" width="600" height="450"/> 

and I can not toggle the video into fullscreen

will it be any possible way to make it fullscreen if they click on the option?

or will it be any other embed code that similar to iframe to use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云裳 2024-12-06 16:05:20

您的问题可能是 Flash 插件将 iframe 识别为您的“全屏”。
当查看 youtube 嵌入代码时,我在 iframe 定义中识别出了一个函数“allowfullscreen”
确保你的代码中也有这部分..

<iframe width="560" height="315" src="http://www.youtube.com/embed/NWHfY_lvKIQ" frameborder="0" **allowfullscreen**></iframe>

否则除了 iframe 之外可能还有另一个选项..

Your problem could be that the flash plugin recognises iframe as your "fullscreen"..
When looking at the youtube embed code, i recognised a function "allowfullscreen" within the iframe definition
make sure you also have this part in your code..

<iframe width="560" height="315" src="http://www.youtube.com/embed/NWHfY_lvKIQ" frameborder="0" **allowfullscreen**></iframe>

else there might be another option beside an iframe..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文