概述//由于安卓
虚拟键盘也会占位置,致使页面高度变小,所以absolute fixed
元素跟着移动 //防止唤起键盘,导致absolute元素被挤上来 var isAndroid = navigator.userAgent.indexOf(‘Android‘) > -1 || navigator.userAgent.indexOf(‘Adr‘) > -1; if (isAndroid){//如果是安卓 //由于安卓虚拟键盘也会占位置,致使页面高度变小,所以absolute fixed元素跟着移动 //防止唤起键盘,导致absolute元素被挤上来 var isAndroID = navigator.userAgent.indexOf(‘AndroID‘) > -1 || navigator.userAgent.indexOf(‘Adr‘) > -1; if (isAndroID){//如果是安卓手机的浏览器 var win_h = $(window).height();//关键代码 $("body").height(win_h);//关键代码 window.addEventListener(‘resize‘, function () { // document 对象的activeElement 属性返回文档中当前获得焦点的元素。 if (document.activeElement.tagname === ‘input‘ || document.activeElement.tagname === ‘TEXTAREA‘) { if($(‘.footerText‘).is(‘:visible‘)){ $(‘.footerText‘).hIDe(); }else{ $(‘.footerText‘).show(); } } }); } 总结
以上是内存溢出为你收集整理的解决absolute fixed元素在安卓唤起虚拟键盘时,元素被挤上来。全部内容,希望文章能够帮你解决解决absolute fixed元素在安卓唤起虚拟键盘时,元素被挤上来。所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
评论列表(0条)