灯箱仅打开一次
我有一个灯箱问题。
我在全屏上使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
覆盖层仅创建一次,第一次打开时,因为您将加载选项设置为 true(这意味着覆盖层在创建时打开)。进一步单击时,将不会创建叠加层(它已经存在并且被隐藏)。
该怎么办 :
在 openLB() 的末尾添加此行:
它将在进一步单击时加载(显示)叠加层。
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():
It will load(show) the overlay on further clicks.