Flowplayer 的 Lightbox 使用脚本关闭它?

发布于 2024-10-13 08:01:45 字数 123 浏览 6 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

夜清冷一曲。 2024-10-20 08:01:45
setTimeout(function(){
  //close it here
}, 10000);
setTimeout(function(){
  //close it here
}, 10000);
源来凯始玺欢你 2024-10-20 08:01:45

根据 API 文档,您将调用 close() 从触发元素中提取的 overlay() 方法。因此,要在 10 秒后完成此操作,您可以将此方法包装在 setTimeout 中,如下所示:

setTimeout(function(){
    $('.overlayTrigger').overlay().close();
}, 10000);

According to the API docs, you would call the close() method on the overlay() pulled from the triggering element. So, to to accomplish this after 10 seconds you would wrap this method in a setTimeout like mentioned:

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