在模态中加载 Youtube(可能使用 swfobject?)

发布于 2024-10-07 11:10:42 字数 146 浏览 4 评论 0原文

我在让 YouTube 视频在所有浏览器上正确加载模式时遇到很多问题。我刚刚找到 swfobject 但找不到任何实现它的代码。

谁能告诉我如何使用 swfobject 动态加载 YouTube 视频?我还在网站上运行了 jQuery,如果这能让代码更优雅的话。

I'm having a lot of problems getting a YouTube video to load in a modal properly on all browsers. I just found swfobject but can't find any code on implementing it.

Can anyone tell me how to load a YouTube video dynamically using swfobject? I've also got jQuery running on the site if that makes it more elegant code.

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

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

发布评论

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

评论(1

微暖i 2024-10-14 11:10:42

我想通了。这是我用来让它在模式中工作的代码:

var atts = {};
atts.id = "vid";
$.modal('<div class="modal_container" style="background: transparent url(<?php echo $base_path . path_to_theme() ?>/images/bkgd_youtube_modal.png) no-repeat;"><div id="youtube_movie"></div></div>', options);

swfobject.embedSWF('http://www.youtube.com/v/'+this.id+"&hl=en&fs=1&rel=0&color1=0x000000&color2=0x2d2d2d&enablejsapi=1&playerapiid=ytplayer",
"youtube_movie", "460px", "280px", "9", null, null, atts);

I figured it out. This is the code I used to get it to work in the modal:

var atts = {};
atts.id = "vid";
$.modal('<div class="modal_container" style="background: transparent url(<?php echo $base_path . path_to_theme() ?>/images/bkgd_youtube_modal.png) no-repeat;"><div id="youtube_movie"></div></div>', options);

swfobject.embedSWF('http://www.youtube.com/v/'+this.id+"&hl=en&fs=1&rel=0&color1=0x000000&color2=0x2d2d2d&enablejsapi=1&playerapiid=ytplayer",
"youtube_movie", "460px", "280px", "9", null, null, atts);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文