window
的屁股window
查看, 定义一个变量用来存储这个参数
, 当实时屏幕高度小于此参数时时, 说明键盘弹起来了, 这时就隐藏底部菜单, 当键盘收起时, 再显示底部菜单;Vue
获取 dom
的位置offsetTop
,但在手机上,菜单顶上来了,dom
的位置没有变化,原来offsetTop
是绝对坐标
window
的几个参数之后找到了一个 innerHeight
innerHeight
的变化(已解决)hidden
属性来控制mui-bar
是mui
的一个组件,上面有行代码是position: flexd;
,所以要去掉,不然hidden
如果使用position: absolute;
的话权重不够。所以给这两个属性用同一个参数来控制,当 hidden
有时mui-bar
无有的同学说,mui-bar
没了,样式变了。那就把mui-bar
除了position: flexd;
的全部复制到hidden
上
废话不多说,上代码
<nav ref="nav" :class="{'mui-bar':!this.ishigh, 'mui-bar-tab':true,'hidden': this.ishigh}"></nav>
none
,有其他需求可以按需改,如position: absolute;
.hidden {
display: none;
}
data() {
return{
ishigh: false,
docmHeight: 0,
showHeight: 0,
}
},
watch:{ // 监听 窗口数值的变化,发生变化就执行 inputType
showHeight: 'inputType'
},
methods: {
inputType() {
// 这里为什么要做一个 0.2 的缓冲呢,以为有些浏览器上滑会把
// 顶部导航栏隐藏掉,说的就是你(Chrome)
let height = this.docmHeight * 0.2;
if(this.docmHeight - this.showHeight < height){
this.ishigh = false;
}else{
this.ishigh = true;
}
},
mounted() { // dom 元素构建完就执行的函数
// 立马获取初始值 为了后面发生的 bug 做铺垫
this.docmHeight = window.innerHeight;
// window.onresize监听页面高度的变化
window.onresize = () => {
return (() => {
this.showHeight = window.innerHeight;
})()
}
}
getBoundingClientRect()
getBoundingClientRect()
会返回一个矩形参数对象,里面记录了被选元素的所在相对
位置nav
底部菜单,当被键盘顶起时,就可以操作它了。具体代码,参上vue
获取 dom
的方法<nav ref="nav" :class="{'mui-bar':!this.ishigh, 'mui-bar-tab':true,'hidden': this.ishigh}"></nav>
<script type="text/javascript">
var vm = new Vue({
.....
methods: {
getdom(){
let dom = this.$refs.nav
}
}
})
</script>
原文:https://www.cnblogs.com/xisy/p/11981766.html