VUE实时监听滚动条高度
VUE实时监听滚动条高度先看效果图不需要设置屏幕100vh,直接上代码mounted: function() {window.addEventListener('scroll',this.rollingheight,true)},methods: {rollingheight:function(e){console.log(window.pageYOffset)},...
·
VUE实时监听滚动条高度
先看效果图
没设置高度100vh获取方式
mounted: function() {
window.addEventListener('scroll',this.rollingheight,true)
},
methods: {
rollingheight:function(e){
console.log(window.pageYOffset)
},
},
设置高度100vh获取方式 需要最外层的一个id
<template>
<div id="orderFullScreen" style="height:100vh;">
要在最外层设置好id
</div>
</template>
mounted: function() {
document.getElementById('orderFullScreen').addEventListener('scroll', this.handleScrollx,true)
},
methods: {
handleScrollx() {
console.log(document.getElementById('orderFullScreen').scrollTop)
},
},
有什么问题欢迎评论留言,我会及时回复你的
更多推荐
已为社区贡献11条内容
所有评论(0)