1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > Vue监听滚动条事件 点击回到顶部

Vue监听滚动条事件 点击回到顶部

时间:2022-07-17 16:09:02

相关推荐

Vue监听滚动条事件   点击回到顶部

Vue监听滚动条事件 点击回到顶部

监听滚顶条事件:

created () {this.listenerFunction();},beforeDestroy () {document.removeEventListener("scroll", this.listenerFunction);},method () {listenerFunction(e) {document.addEventListener('scroll', this.handleScroll, true);}),handleScroll () {console.log(window.pageYOffset)}}

点击回顶部:

backTop() { //点击回顶部// document.body.scrollTop = 0;// document.documentElement.scrollTop = 0;$('html').stop().animate({scrollTop: 0}, 1000)},

无动画:

window.scrollTo(x-coord, y-coord);

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。