app打包发布

============== ==========app开发-打包发布用uni-app软件========================

uni-app

 

 

============== ==========app判断很屏幕和竖屏========================

  1. <script type="text/javascript">  
  2.     var mql = window.matchMedia("(orientation: portrait)");  
  3.     if(mql.matches) {  
  4.         alert("竖屏");  
  5.     } else {  
  6.         alert("横屏");  
  7.     }  
  8.     // 添加一个媒体查询改变监听者  
  9.     mql.addListener(function(m) {  
  10.         if(m.matches) {  
  11.             alert("竖屏");  
  12.         }  
  13.         else {  
  14.             alert("横屏");  
  15.         }  
  16.     });  
  17. </script>
posted @ 2020-06-10 15:22  让双脚&去腾空  阅读(159)  评论(0编辑  收藏  举报