js和vue计算DOM元素距离底部的距离
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
免费下载资源
·
js
参考地址
当前元素与底部的距离 = 可视区窗口高度 + 文档滚动高度 - 当前元素与页面顶部距离 - 当前元素高度
vue:
window.innerHeight - e.target.getBoundingClientRect().y -e.target.getBoundingClientRect().height
e是当前元素参数$event
参考地址
其中element-resize-detector插件可以实时监听DOM元素高度和宽度,具体使用如下:
第一步:通过npm install element-resize-detector获取elementResizeDetectorMaker
第二步:将依赖引入:
import elementResizeDetectorMaker from ‘element-resize-detector’
第三步使用:
let erd = elementResizeDetectorMaker();
erd.listenTo(this.$refs.pageLeft,element => {
_this.windowScroll()
})
windowScroll方法:
windowScroll() {
if (this.$refs.pageLeft) {
// 根据左侧其他元素获取按钮距离浏览器窗口左侧的距离
const clientRect = this.$refs.pageLeft.getBoundingClientRect()
this.leftSize = clientRect.left
// 判断左侧距离可视化窗口底部的距离,小于66,将按钮设置绝对定位
if (leftDomTop(this.$refs.pageLeft) < 66) {
this.isFixed = true
} else {
this.isFixed = false
}
}
},
第四步:引入 leftDomTop 方法:
import { leftDomTop } from '@/utils/index'
// 获取左侧DOM距离可视化窗口的距离
export function leftDomTop(dom) {
const height = window.innerHeight //可视区窗口高度
const curDomHeight = dom.offsetHeight
// const curDomHeight = dom.getBoundingClientRect().height
const curDomY = dom.getBoundingClientRect().y
const curDomBottom = height - curDomHeight - curDomY
return curDomBottom
}
GitHub 加速计划 / vu / vue
207.54 K
33.66 K
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:2 个月前 )
73486cb5
* chore: fix link broken
Signed-off-by: snoppy <michaleli@foxmail.com>
* Update packages/template-compiler/README.md [skip ci]
---------
Signed-off-by: snoppy <michaleli@foxmail.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 4 个月前
e428d891
Updated Browser Compatibility reference. The previous currently returns HTTP 404. 5 个月前
更多推荐
已为社区贡献2条内容
所有评论(0)