<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>弹窗广告
</title>
<style>
* {
margin: 0;
padding: 0;
}
.ad {
position: fixed;
right: 0;
bottom: 0;
}
.ad > span {
display: inline-block;
width: 30px;
height: 30px;
position: absolute;
top: 60px;
right: 90px;
}
img {
width: 450px;
height: 300px;
}
</style>
<script src="./js/jquery-3.5.1.js"></script>
<script>
$(function () {
$("span").click(function () {
$(".ad").remove()
})
$(".ad").slideDown(1000).fadeOut(1000).fadeIn(1000)
})
</script>
</head>
<body>
<div class="ad">
<img src="images/ad_pic.jpg" alt="">
<span></span>
</div>
</body>
</html>
转载请注明原文地址:https://tech.qufami.com/read-18463.html