clientHeight:function(){
//加载页面时执行一次
changeHeight();
//监听浏览器宽度的改变
window.onresize = function(){
changeHeight();
};
function changeHeight(){
//获取网页可见区域宽度
var docHeight = document.documentElement.clientHeight;
if(docHeight <= 750){
$('.login-bottom-banner').hide();
$('.login-bottom-banner-text').hide();
}else {
$('.login-bottom-banner').show();
$('.login-bottom-banner-text').show();
}
}
},
网友评论