灯箱仅打开一次

发布于 2024-11-06 11:23:29 字数 391 浏览 3 评论 0原文

我有一个灯箱问题。

我在全屏上使用 jw 播放器回调函数来打开一个灯箱(jquery),这可以工作,但只能一次。如果我关闭灯箱,我就无法再打开它。

在灯箱覆盖层中是另一个具有相同视频但尺寸不同的播放器。

您可以尝试一下并在此处查看代码: http://rbb-rbb.lutzschramm.eu/rbb_breit/_02_uebersicht_demo_lightbox_fsbtn2.html

按全屏按钮(右下角)打开灯箱。

感谢您抽出时间

马克

i've a lighbox problem.

i use a jw player callback function onFullscreen to open a lightbox (jquery) this works, but only one time. if i close the lightbox i can't open it again.

in the lightbox overlay is another player with the same video but a different dimension.

you can try it and see the code here: http://rbb-rbb.lutzschramm.eu/rbb_breit/_02_uebersicht_demo_lightbox_fsbtn2.html

press the fullscreen-button (lower right corner) to open the lightbox.

thanks for taking time

marc

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

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

发布评论

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

评论(1

征﹌骨岁月お 2024-11-13 11:23:29

覆盖层仅创建一次,第一次打开时,因为您将加载选项设置为 true(这意味着覆盖层在创建时打开)。进一步单击时,将不会创建叠加层(它已经存在并且被隐藏)。

该怎么办 :
在 openLB() 的末尾添加此行:

$("#LBPlayer").data('overlay').load();

它将在进一步单击时加载(显示)叠加层。

The overlay is only created once, the first time it will be opened because of you set the load-option to true(this means, the overlay opens when it was created). On further clicks no overlay will be created(it already exist and is hidden).

What to do :
add this line at the end of openLB():

$("#LBPlayer").data('overlay').load();

It will load(show) the overlay on further clicks.

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