自动关闭的广告

<style>
        div {
            width: 300px;
            height: 300px;
            background-color: aqua;
        }
   </style>
<script>
        window.addEventListener('load', function () {
            var div = document.querySelector('div')
            setTimeout(function () {
                div.style.display = 'none'
            }, 5000)
        })
    </script>

    <div></div>
 
posted @ 2021-09-14 11:42  Travel_Magnum_Cho  阅读(33)  评论(0)    收藏  举报