自动关闭的广告
<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>

浙公网安备 33010602011771号