2000字范文,分享全网优秀范文,学习好帮手!
2000字范文 > html手机广告倒计时弹屏6 广告弹窗关闭倒计时(示例代码)

html手机广告倒计时弹屏6 广告弹窗关闭倒计时(示例代码)

时间:2022-12-14 20:15:48

相关推荐

html手机广告倒计时弹屏6 广告弹窗关闭倒计时(示例代码)

无标题文档

#beiJ {

width:100%;

height:100%;

background:#000;

opacity:0.7;

position:fixed;

top:0;

left:0;

}

#tanChuang {

width:800px;

height:400px;

position:fixed;

top:50%;

left:50%;

margin:-200px 0 0 -400px;

background:#222;

box-shadow:0px 0px 20px #111;

color:#fff;

}

#jiShi {

width:180px;

height:180px;

border:10px solid #fff;

border-radius:50%;

margin:100px auto;

font-size:150px;

font-weight:bold;

font-family:"arial";

text-align:center;

line-height:180px;

position:absolute;

top:0%;

left:calc(50% - 100px);

}

#tanChuang img {

width:100%;

height:100%;

}

#tanChuang span {

width:40px;

height:40px;

font-size:40px;

position:absolute;

top:0;

right:0;

cursor:pointer

}

×

window.onload = function() {

var obj = document.getElementById("jiShi");

var sp = document.getElementById("sp");

var beiJ = document.getElementById("beiJ");

var tanChuang = document.getElementById("tanChuang");

var i = 30;

obj.innerHTML = i;

var a = setInterval(timeFn, 1000);

function timeFn() {

i--;

obj.innerHTML = i;

if (i == 0) {

clearInterval(a);

beiJ.style.display = "none";

tanChuang.style.display = "none";

}

}

sp.onclick = function() {

beiJ.style.display = "none";

tanChuang.style.display = "none";

}

}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。