模态弹出框延迟一段时间后隐藏()

发布于 2024-11-15 15:00:02 字数 1743 浏览 2 评论 0原文

这应该是相当简单的,但事实证明并非如此。我希望(我的客户想要)一个弹出的灯箱窗口,其中嵌入了 YouTube 视频,在页面加载后立即出现,然后在视频完成后消失。我正在努力使正常的灯箱之一在页面加载时弹出,因此设法实现以下工作:

$(document).ready(function() {  

//Put in the DIV id you want to display
launchWindow('#dialog1');

//if close button is clicked
$('.window #close').click(function () {
    $('#mask').hide();
    $('.window').hide();
});     

//if mask is clicked
$('#mask').click(function () {
    $(this).hide();
    $('.window').hide();
}); 

    $("#mask").delay(24000).hide();
    $(".window").delay(24000).hide();

});

function launchWindow(id) {

    //Get the screen height and width
    var maskHeight = $(document).height();
    var maskWidth = $(window).width();

    //Set heigth and width to mask to fill up the whole screen
    $('#mask').css({'width':maskWidth,'height':maskHeight});

    //transition effect     
    $('#mask').fadeIn(1000);    
    $('#mask').fadeTo("slow",0.8);  

    //Get the window height and width
    var winH = $(window).height();
    var winW = $(window).width();

    //Set the popup window to center
    $(id).css('top',  winH/2-$(id).height());
    $(id).css('left', winW/2-$(id).width()/2);

    //transition effect
    $(id).fadeIn(2000); 

}



<div id="boxes">
    <div id="dialog1" class="window">
        <iframe width="725" height="442" src="http://www.youtube.com/embed/SMlRXI_N6u4?autoplay=1" frameborder="0" allowfullscreen id="youtube-popup"></iframe>
    </div>
</div>

<div id="mask"></div> 

在弹出方面效果很好。然后

   $("#mask").delay(24000).hide();
   $(".window").delay(24000).hide();

命令应该在 24 秒(视频的长度)后隐藏两个叠加层。然而,它们在作品中任何位置的存在都导致它根本不会弹出,更不用说在 24 秒后消失了。

有什么想法吗?

This should be fairly straight forward but is proving not to be. I want (my client wants) a pop up lightbox window with an embedded youtube video to appear as soon as the page is loaded and then for it to disappear when the video has finished. I was struggling to make one of the normal lightboxes pop up on page load so managed to get the following working:

$(document).ready(function() {  

//Put in the DIV id you want to display
launchWindow('#dialog1');

//if close button is clicked
$('.window #close').click(function () {
    $('#mask').hide();
    $('.window').hide();
});     

//if mask is clicked
$('#mask').click(function () {
    $(this).hide();
    $('.window').hide();
}); 

    $("#mask").delay(24000).hide();
    $(".window").delay(24000).hide();

});

function launchWindow(id) {

    //Get the screen height and width
    var maskHeight = $(document).height();
    var maskWidth = $(window).width();

    //Set heigth and width to mask to fill up the whole screen
    $('#mask').css({'width':maskWidth,'height':maskHeight});

    //transition effect     
    $('#mask').fadeIn(1000);    
    $('#mask').fadeTo("slow",0.8);  

    //Get the window height and width
    var winH = $(window).height();
    var winW = $(window).width();

    //Set the popup window to center
    $(id).css('top',  winH/2-$(id).height());
    $(id).css('left', winW/2-$(id).width()/2);

    //transition effect
    $(id).fadeIn(2000); 

}



<div id="boxes">
    <div id="dialog1" class="window">
        <iframe width="725" height="442" src="http://www.youtube.com/embed/SMlRXI_N6u4?autoplay=1" frameborder="0" allowfullscreen id="youtube-popup"></iframe>
    </div>
</div>

<div id="mask"></div> 

Which works fine in terms of it popping up. Then the

   $("#mask").delay(24000).hide();
   $(".window").delay(24000).hide();

commands should be hiding the two overlays after 24 seconds (the length of the video). However their presence anywhere in the piece causes it not to pop up at all, let alone disappear after 24 seconds.

Any ideas?

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

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

发布评论

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

评论(1

善良天后 2024-11-22 15:00:02

没有持续时间的 .hide() 不会添加到队列中,它会立即执行。最简单的技巧是将其更改为 .hide(1)

其他可能的方法是使用 setTimeout 或 enqueue,尽管工作量会稍微多一些。

.hide() with no duration does not get added to the queue, it executes immediately. The easiest trick would be to change it to .hide(1).

Other possibilities although slightly more work would be to use setTimeout or enqueue.

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