.content{height: 1000px;background: #dadada;}
.ads{width:300px;height: 100px;background: green;position: fixed;left: 0;right:0;margin:0 auto;}
.top{top:0}
.bottom{bottom: 0;}
.ads .del{position: absolute;right: 0;top:0;background: #999;color: #ffffff;padding: 5px 10px;cursor: pointer;}
.ads .del:hover{background: #f00;}
内容
滚动一下试试
X
广告
var ads = document.querySelector('.ads')
document.querySelector('.del').onclick = function () {
ads.style.display = 'none'
}
var body = document.querySelector('body')
body.onscroll = function () {
console.log(document.documentElement.scrollTop)
if (document.documentElement.scrollTop > 50) {
ads.setAttribute('class', 'ads bottom')
} else {
ads.setAttribute('class', 'ads top')
}
}