• 媒体查询相关


    移动端媒体查询尺寸参考

    /*iphone4*/

    @media only screen and (device-height :480px) and (-webkit-device-pixel-ratio:2){

    }

    /*iphone4s*/

    @media screen and (min- 320px) and (max- 480px) {

    }

    /*iphone5*/

    @media (device-height:568px) and (-webkit-min-device-pixel-ratio:2){

    /*iphone6*/

    @media (min-device-width : 375px) and (max-device-width : 667px) and (-webkit-min-device-pixel-ratio : 2){

    }

    /*iphone6+*/

    @media (min-device-width : 414px) and (max-device-width : 736px) and (-webkit-min-device-pixel-ratio : 3){

    }

    /* iPads (portrait)  */

    @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {

    }

    /* iPads (landscape)  */

    @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {

    }

    /* iPads (portrait and landscape) */

    @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {

    }

    /*魅族*/

    @media only screen and (max-device-width :1080px) and (-webkit-min-device-pixel-ratio : 2.5){

     }

    /*mate7*/

    @media only screen and (max-device-width :1080px) and (-webkit-min-device-pixel-ratio : 3){

     }

    /* 平板之类的宽度 1024 以下设备 */

    @media only screen and (min- 321px) and (max- 1024px) {

    }

    /* PC客户端或大屏幕设备: 1028px 至更大 */

    @media only screen and (min- 1029px) {

    }

    /* 竖屏 */

    @media screen and (orientation:portrait) and (max- 720px) {

    }

    /* 横屏 */

    @media screen and (orientation:landscape) and (min-width : 480px){

    }

    注:-webkit-min-device-pixel-ratio可在js代码中通过devicePixelRatio查询。

  • 相关阅读:
    SuiteCRM-7.7.6 (Ubuntu 16.04)
    Mautic-2.2.0 (Ubuntu 16.04)
    Limesurvey-2.55 (Ubuntu 16.04)
    视频会议20方100点 v2.66.1.18
    cuda和tensorflow对应关系
    pointnet++运行
    ubuntu使用anaconda安装tensorflow
    ubuntu安装搜狗输入法
    add the icon of the pycharm
    ubuntu中文界面改成英文界面
  • 原文地址:https://www.cnblogs.com/nerrol/p/8126326.html
Copyright © 2020-2023  润新知