码迷,mamicode.com
首页 > 移动开发 > 详细

js-解决安卓手机软键盘弹出后,固定定位布局被顶上移问题

时间:2020-11-26 15:15:42      阅读:27      评论:0      收藏:0      [点我收藏+]

标签:修复   安卓   else   导致   -o   body   var   布局   col   

分析:软键盘弹出后,导致页面高度变化

解决方案:软键盘弹出后,修复页面高度

// 监听窗口变化
    resizeScreen(){
      if (!this.state.isIOS && this.state.isInApp) {
            var originHeight = document.documentElement.clientHeight || document.body.clientHeight;
            this.$nextTick(()=>{
              let bodyE = document.querySelector(‘.pop-other‘);
              window.addEventListener(‘resize‘, function() {
                  var resizeHeight = document.documentElement.clientHeight || document.body.clientHeight;
                  if (originHeight < resizeHeight) {
                      console.log(‘Android 键盘收起啦!‘);
                      // Android 键盘收起后操作
                      bodyE.style.height = 100+‘%‘;
                  } else {
                      console.log(‘Android 键盘弹起啦!‘);
                      // Android 键盘弹起后操作
                      bodyE.style.height = originHeight+‘px‘;
                  }
                  originHeight = resizeHeight;
              }, false)
            });
        }
    },

 

js-解决安卓手机软键盘弹出后,固定定位布局被顶上移问题

标签:修复   安卓   else   导致   -o   body   var   布局   col   

原文地址:https://www.cnblogs.com/lingXie/p/14025066.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!