Flowplayer 的 Lightbox 使用脚本关闭它?
我正在使用 Flowplayer 的灯箱,谁能告诉我如何在 10 秒后使用脚本关闭灯箱。
基本上,当页面打开时,灯箱就会被触发,然后许多其他脚本在后台运行,一旦完成,灯箱就会在 10 秒后关闭。
谢谢
I am using Flowplayer's lightbox can anyone tell me how I can close the lightbox using script after 10 secs.
Basically when the page is opened the lightbox is triggered, and then numerous other scripts run in the background once completed the lightbox should close after 10 secs.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 API 文档,您将调用
close()
从触发元素中提取的overlay()
方法。因此,要在 10 秒后完成此操作,您可以将此方法包装在setTimeout
中,如下所示:According to the API docs, you would call the
close()
method on theoverlay()
pulled from the triggering element. So, to to accomplish this after 10 seconds you would wrap this method in asetTimeout
like mentioned: