0

我想制作一个带有广告的 javascript 弹出窗口,然后在 10 秒后关闭,我在互联网上搜索了任何可以做到这一点的东西,但我找不到任何东西。

我不是一个非常过期的 javascript 程序员。

<script type="text/javascript">



$(document).ready(function() {  


        var id = '#dialog';


        //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()/2);
        $(id).css('left', winW/2-$(id).width()/2);

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

    //if close button is clicked
    $('.window .close').click(function (e) {
        //Cancel the link behavior
        e.preventDefault();

        $('#mask').hide();
        $('.window').hide();
    });     


});

</script>

最好的祝福,

杰普小号

4

1 回答 1

3

这应该可以解决问题:

setTimeout(function() {
    $(id).hide();
}, 10000);
于 2012-04-17T08:08:28.773 回答