app打包发布
============== ==========app开发-打包发布用uni-app软件========================
uni-app
============== ==========app判断很屏幕和竖屏========================
- <script type="text/javascript">
- var mql = window.matchMedia("(orientation: portrait)");
- if(mql.matches) {
- alert("竖屏");
- } else {
- alert("横屏");
- }
- // 添加一个媒体查询改变监听者
- mql.addListener(function(m) {
- if(m.matches) {
- alert("竖屏");
- }
- else {
- alert("横屏");
- }
- });
- </script>