2509人加入学习
(5人评价)
Web前端第四季(jQuery)

制作完成于2018年6月19日 基于jQuery-3.3.1

价格 免费
<!DOCTYPE html>
<head>
    <meta charset="UTF-8">
    <title>jQuery广告弹窗</title>
    <script type="text/javascript" src="js/jquery-3.3.1.js"></script>
    <style type="text/css">
        #ad{
            width:300px;
            height:300px;
            background-color:antiquewhite;
            position:fixed;
            bottom:0;
            right:0;
            display:none;
        }
    </style>
    <script type="text/javascript">
        setTimeout(function(){
            $("#ad").show();
        },3000);
        setTimeout(function(){
            $("#ad").hide();
        },5000);
        $(function(){
            $("#closeBtn").click(function(){
                $("#ad").hide();
            });
        });
    </script>
</head>
<body>
    <div id="ad">
        <button id="closeBtn">关闭</button>
    </div>
</body>
</html>

 

[展开全文]

  hide 方法关闭  click 点击事件

[展开全文]

授课教师

SiKi学院老师

课程特色

下载资料(1)
视频(20)