zoukankan      html  css  js  c++  java
  • 有手机输入键盘时切换横竖屏高度变化的问题

    function resetIosScreen() {
    	if ( window.orientation == 90 || window.orientation == -90 ) {
     	
    	        userHeight = window.screen.width;
    	 	
    	   } else {
    	 	
    	        userHeight = window.screen.height;
    	 	
    	    }
     	
        $(".before").height(userHeight - 70);
     	
        $(".prompt").height(userHeight);
     	
    }
    
    if (/iPhone/.test(navigator.userAgent)) {
     	
                resetIosScreen();
     	
    }
    
    
     $(window).on("orientationchange",function(){
     	
                    resetIosScreen();
     	
    });
    

      

  • 相关阅读:
    调试与分析
    GCC
    汇编
    数据恢复
    TCP/IP
    shell
    vmstat、top
    计算程序运行时间的封装
    protobuf
    c++模板
  • 原文地址:https://www.cnblogs.com/xupeiyu/p/5177035.html
Copyright © 2011-2022 走看看