博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iphone手机不同版本兼容、横竖屏
阅读量:6319 次
发布时间:2019-06-22

本文共 1591 字,大约阅读时间需要 5 分钟。

/* 兼容问题*/@media screen and (device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 2){   .dialog-agreement-con{    height: 45%;  /* iphone4*/  }} @media screen and (device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2){   .dialog-agreement-con{    height: 55%;  /* iphone5*/  }} @media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation : portrait) {   .dialog-agreement-con{    height: 60%;  /* iphone6竖屏*/  }}@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (orientation : portrait) {   .dialog-agreement-con{    height: 60%;  /* iphone6 plus竖屏*/  }}.dialog-agreement-con{overflow-y:scroll; margin-bottom: 2rem;}CSS判断横屏竖屏@media screen and (orientation: portrait) {/*竖屏 css*/}@media screen and (orientation: landscape) {/*横屏 css*/}JS判断横屏竖屏//判断手机横竖屏状态:window.addEventListener("onorientationchange" in window ? "orientationchange" : "resize", function() {  if (window.orientation === 180 || window.orientation === 0) {    alert('竖屏状态!');  }  if (window.orientation === 90 || window.orientation === -90 ){    alert('横屏状态!');  } }, false);//移动端的浏览器一般都支持window.orientation这个参数,通过这个参数可以判断出手机是处在横屏还是竖屏状态。// 横屏监听var updateOrientation = function(){  if(window.orientation=='-90' || window.orientation=='90'){    $('.landscape-wrap').removeClass('hide');    console.log('为了更好的体验,请将手机/平板竖过来!');  }else{    $('.landscape-wrap').addClass('hide');    console.log('竖屏状态');  }};window.onorientationchange = updateOrientation;

  

 

转载于:https://www.cnblogs.com/qhorse/p/5104575.html

你可能感兴趣的文章
《C++ Primer Plus》第4章 学习笔记
查看>>
yii 项目根目录下需要有assets目录
查看>>
要重定向 IO 流,Process 对象必须将 UseShellExecute 属性设置为 False。
查看>>
C#中Windows Media Player控件使用实例|方法
查看>>
httpclient用getStatusCode
查看>>
3D引擎为什么使用三角形绘制曲面
查看>>
ios入门篇 -hello Word(1)
查看>>
【十五分钟Talkshow】在.NET应用程序中访问Excel的几种方式
查看>>
图数据库titan 和 rexster安装手册
查看>>
JS--switch 语句
查看>>
go-vim配置
查看>>
jetty配置jndi数据源
查看>>
php 调用系统命令 超时
查看>>
关于“性”
查看>>
android中级篇之多线程下载
查看>>
Silverlight删除数据表格中的数据,表格头部定义全选按钮,批量删除
查看>>
并查集
查看>>
《深入Ajax架构和最佳实践》读书笔记
查看>>
SAP HANA是什么
查看>>
一位游戏制作人的“页游之惑”
查看>>