为什么HTML页面在手机浏览器中底部菜单栏都正常显示,可是放在手机APP中就不能直接显示

html-css07

为什么HTML页面在手机浏览器中底部菜单栏都正常显示,可是放在手机APP中就不能直接显示,第1张

应该是插件不匹配了,你卸载重新安装一下试试。或者直接换其他的手机浏览器再安装APP插件,看看是否可以。现在越来越多的人在使用手机qq浏览器。我也是比较喜欢这个浏览器,操作简单,功能强大。

看视频很顺畅。上网也是很省流量。而像uc等其他手机浏览器,安装包比较大,上网速度不快,用起来不方便。

希望您采纳!

估计导航用的fixed定位吧,

var windheight =window.innerHeight         

 var bottomx = document.getElementById('bottomx') //底部导航

   window.onresize(function(){    var docheight = window.innerHeight         

    if(docheight < windheight){            

        bottomx.style.position = 'static'

    }else{

        bottomx.style.position = 'fixed'

    }     

   })