gpt4 book ai didi

Javascript 10秒后自动关闭弹出窗口

转载 作者:行者123 更新时间:2023-11-28 21:04:36 25 4
gpt4 key购买 nike

我想制作一个带有广告的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>

最诚挚的问候,

杰普·S

最佳答案

这应该可以解决问题:

setTimeout(function() {
$(id).hide();
}, 10000);

关于Javascript 10秒后自动关闭弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10187382/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com