YouTube iframe 全屏

发布于 2025-01-11 12:16:21 字数 640 浏览 0 评论 0原文

希望大家都好。 我需要在我们公司的网站上建立一个页面,在其中放置一些我们制作的视频。 问题是,我似乎无法找到一种方法来使视频以全屏模式供访问者使用。 我几乎已经完成了我找到的所有解决方案,但似乎没有一个有效。我已经完成了:

<iframe allow="fullscreen;">
---
<iframe src="your_page_url" 
    allowfullscreen="allowfullscreen"
    mozallowfullscreen="mozallowfullscreen" 
    msallowfullscreen="msallowfullscreen" 
    oallowfullscreen="oallowfullscreen" 
    webkitallowfullscreen="webkitallowfullscreen">
</iframe> 
---
allowFullScreen="allowFullScreen" and frameBorder="0"
---
<iframe 
    id="player" 
    src="URL here" 
    allowfullscreen="true">
</iframe>
---

但是这些都不起作用..欢迎任何帮助!

hope everyone is ok.
I need to build a page in our company's website where we're putting some videos of our production.
The problem is, i can't seem to find a way to make the videos available in fullscreen mode for the visitors.
I've done pratically every solution that i've found, but none seems to work. I've done:

<iframe allow="fullscreen;">
---
<iframe src="your_page_url" 
    allowfullscreen="allowfullscreen"
    mozallowfullscreen="mozallowfullscreen" 
    msallowfullscreen="msallowfullscreen" 
    oallowfullscreen="oallowfullscreen" 
    webkitallowfullscreen="webkitallowfullscreen">
</iframe> 
---
allowFullScreen="allowFullScreen" and frameBorder="0"
---
<iframe 
    id="player" 
    src="URL here" 
    allowfullscreen="true">
</iframe>
---

But none of that worked.. Any help here is welcome!

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

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

发布评论

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

评论(1

咋地 2025-01-18 12:16:21

如果您想在 iframe 中添加 youtube 视频,这非常简单。您只需在 src 嵌入词中添加 iframe,就像

<iframe src="https://www.youtube.com/embed/watch?v=fbS2O4VETAo&t=2s" name="myFrame"></iframe>

youtube.com/embed/Example url 之后一样

its very easy if you wants to add youtube videos in iframe .you just have to add iframe in src embed word like that

<iframe src="https://www.youtube.com/embed/watch?v=fbS2O4VETAo&t=2s" name="myFrame"></iframe>

after youtube.com/embed/Example url

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