看视频很顺畅。上网也是很省流量。而像uc等其他手机浏览器,安装包比较大,上网速度不快,用起来不方便。
希望您采纳!
估计导航用的fixed定位吧,
var windheight =window.innerHeightvar bottomx = document.getElementById('bottomx') //底部导航
window.onresize(function(){ var docheight = window.innerHeight
if(docheight < windheight){
bottomx.style.position = 'static'
}else{
bottomx.style.position = 'fixed'
}
})