解决微信编辑器全屏时导航条隐藏起来的问题
2018-07-10 本文已影响0人
shougg22
if(fullscreen) {
$("#edui1_toolbarbox").css({
"margin-top": "50px"
})
}else {
$("#edui1_toolbarbox").css({
"margin-top": "0"
})
}
window.onresize = function(){
if(isFullScreen) {
$("#edui1_toolbarbox").css({
"margin-top": "50px"
})
}else {
$("#edui1_toolbarbox").css({
"margin-top": "0"
})
}
}
function isFullScreen (){
if(
window.outerHeight === screen.availHeight
){
if(
window.outerWidth === screen.availWidth
){
return true;// 全屏
}
}
return false; // 不是全屏
};