进来教你用原生js手写的一个恶心人的广告弹窗代码,恶搞js代码尽在五行资源博客搜索js
注意:点击关闭后 在15秒内 里面选择一个随机秒数自己又弹出来,可以拿去加到自己网站里面源码
代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
div {
width: 200px;
height: 400px;
position: fixed;
bottom: 0;
right: 0;
background: tomato;
text-align: right;
transition: 1s;
}
a {
text-align: center;
font-weight: 700;
display: block;
}
</style>
</head>
<body>
<div id="d1">
<button id="btn">x</button>
<a href="http://">这里是个a链接</a>
</div>
<script type="text/javascript">
btn.onclick = function() {
this.parentNode.style.bottom = "-100%";
setTimeout(function() {
d1.style.bottom = "0%";
}, Math.random() * 15000);
}
</script>
</body>
</html>
图片:
评论