jQuery实例——弹窗广告

tech2024-10-09  12

<!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元素的点击事件 $("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>

最新回复(0)