<style>
#advise {
width: 425px;
height: 439px;
background: url(img/2.gif) 425px 439px;
position: relative;
}
#btn {
width: 0px;
height: 0px;
background-color: transparent;
float: right;
border: 0px;
}
#h {
position: absolute;
top: 400px;
left: 150px;
}
</style>
<div id='advise'>
<button id='btn'>×</button>
<h4 id='h'>程序猿的跑路日常</h4>
</div>
<script>
btn.onclick = function () {
advise.style.display = 'none';
setTimeout(function () {
advise.style.display = 'block';
}, 1000)
}
</script>