vue回到顶部监听滚动事件详解
程序员文章站
2022-07-06 14:34:33
本文实例为大家分享了vue回到顶部监听滚动事件,供大家参考,具体内容如下
鼠标滚到到页面中间出现的工具浮框
本文实例为大家分享了vue回到顶部监听滚动事件,供大家参考,具体内容如下
鼠标滚到到页面中间出现的工具浮框
<template> <div class="tools"> <ul @mouseleave="mouseleave()"> <li @click="totop(step)">回到顶部</li> <li @mouseover="mouseover(1)">qq</li> <li @mouseover="mouseover(2)">微信</li> </ul> <div v-if="showindex === 1">玩qq</div> <div v-if="showindex === 2">玩微信</div> </div> </template>
<script> export default { name: 'floattools', props: { step: { //此数据是控制动画快慢的 type: number, default: 50 } }, data() { return { isactive: false, showindex:0//默认显示下标 } }, methods: { totop(i) { //参数i表示间隔的幅度大小,以此来控制速度 document.documentelement.scrolltop -= i; if (document.documentelement.scrolltop > 0) { var c = settimeout(() => this.totop(i), 16); } else { cleartimeout(c); } }, handlescroll() { //获取滚动距顶部的距离,显示 let scrolltop = window.pageyoffset || document.documentelement.scrolltop || document.body.scrolltop; if (scrolltop > 60) { this.isactive = true; } else { this.isactive = false; } }, mouseover(index) { //鼠标移到哪个工具上,对应内容显示出来 this.showindex = index; }, mouseleave(){ //鼠标移出工具区域后1秒,内容区域消失 let timer = settimeout(() => { this.showindex = 0; cleartimeout(timer) }, 500); } }, mounted: function () { window.addeventlistener('scroll', this.handlescroll, true); // 监听(绑定)滚轮滚动事件 }, destroyed() { window.removeeventlistener('scroll', this.handlescroll); //离开页面需要移除这个监听的事件 } } </script>
如果遇到scroll一直打印是0,看是否样式写了overflow:auto去掉即可;或者给父级撑满屏幕;
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: Android OpenGLES如何给相机添加滤镜详解
下一篇: flutter编写精美的登录页面