1

基本的に、モバイル デバイスで実行したい 2 つの異なるスタイルがあります。1 つはポートレート ビュー用、もう 1 つはランドスケープ用です。テスト中に問題が発生しました。Galaxy S4 は、解像度が高いため、縦向きビューのときに横向きビューと思われるものを表示しています。以下のように最初のCSSを書きました。

#checkoutoptions {
    border: 2px solid #c6c6c6;
    border-radius: 10px;
    padding: 10px;
    position: relative;
}

#checkoutoptions h3 {
    font-size: 1.2em;
    font-weight: 500;
    margin-left: 35px;
    margin-top: 10px;
}

#checkoutoptions h4 {
    color: #000;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 0;
}

#checkoutoptions p {
    font-size: .8em;
    margin-bottom: 5px;
}

#checkoutoptions .label {
    display: inline-block;
    font-size: .9em;
    margin: 10px 0 20px;
}

#checkoutoptions .input {
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 0 0 0 4px #f4f4f4;
    font-size: 1em;
    height: 2.25em;
    margin-top: 10px;
}

#checkoutoptions .number {
    background-color: #c6c6c6;
    border-radius: 15px;
    color: #fff;
    height: 30px;
    line-height: 30px;
    position: absolute;
    text-align: center;
    top: 15px;
    width: 30px;
}

#checkoutoptions .dividingLine {
    border-bottom: 1px solid #c6c6c6;
    padding-bottom: 10px; 
}

#checkoutoptions #signin {
    border-bottom: 1px solid #c6c6c6;
    padding-bottom: 10px; 
}

#checkoutoptions .forgotpassword {
    font-size: .75em;
    margin-top: 15px;
}

@media only screen and (min-width: 321px){
    #checkoutoptions {
        overflow: auto;
    }

    #signin {
        float: left;
        clear: both;
        width: 45%;
    }

    .registeroptions { 
        float: left;
        position: relative;
        width: 50%;
    }

    #checkoutoptions #signin {
        border-bottom: 0;
        padding-bottom: 0; 
        border-right: 1px solid #c6c6c6;
        margin-right: 10px;
    }
}

調査の結果、HD/Retina 画面で使用できるメディア クエリがあることがわかりました。だから私は以下を追加しました:

@media
only screen and (-webkit-min-device-pixel-ratio: 1.25),
only screen and ( min--moz-device-pixel-ratio: 1.25),
only screen and ( -o-min-device-pixel-ratio: 1.25/1),
only screen and ( min-device-pixel-ratio: 1.25),
only screen and ( min-resolution: 200dpi),
only screen and ( min-resolution: 1.25dppx)
{
    #checkoutoptions {
        overflow: auto;
    }

    #signin {
        float: none;
        clear: both;
        width: 100%;
    }

    .registeroptions { 
        float: none;
        position: relative;
        width: 100%;
    }

    #checkoutoptions #signin {
        border-right: 0;
        margin-right: 0; 
        border-bottom: 1px solid #c6c6c6;
        padding-bottom: 10px;
    }
}

これは、HD スクリーンにポートレート ビューを表示するのに最適でした。お次はランドスケープビュー!もちろん、これは私が行き止まりにぶつかったところです。私は自分に合ったクエリをまだ見つけていません。これについての研究はこれまでのところ何の議論もしていません。ランドスケープ HD/Retina デバイス用の適切なメディア クエリを作成する方法について何か考えはありますか?

私がこれまでに試したこと:

@media
only screen and (min-width; 1081px) and (-webkit-min-device-pixel-ratio: 1.25),
only screen and (min-width; 1081px) and ( min--moz-device-pixel-ratio: 1.25),
only screen and (min-width; 1081px) and ( -o-min-device-pixel-ratio: 1.25/1),
only screen and (min-width; 1081px) and ( min-device-pixel-ratio: 1.25),
only screen and (min-width; 1081px) and ( min-resolution: 200dpi),
only screen and (min-width; 1081px) and ( min-resolution: 1.25dppx)
{
    #checkoutoptions {
        overflow: auto;
    }

    #signin {
        float: left;
        clear: both;
        width: 45%;
    }

    .registeroptions { 
        float: left;
        position: relative;
        width: 50%;
    }

    #checkoutoptions #signin {
        border-bottom: 0;
        padding-bottom: 0; 
        border-right: 1px solid #c6c6c6;
        margin-right: 10px;
    }
}

現在、それは機能しています(さらにテストを使用できます):

/* Portrait View */
@media
only screen and (max-width: 360px) and (-webkit-min-device-pixel-ratio: 1.25),
only screen and (max-width: 360px) and ( min--moz-device-pixel-ratio: 1.25),
only screen and (max-width: 360px) and ( -o-min-device-pixel-ratio: 1.25/1),
only screen and (max-width: 360px) and ( min-device-pixel-ratio: 1.25),
only screen and (max-width: 360px) and ( min-resolution: 200dpi),
only screen and (max-width: 360px) and ( min-resolution: 1.25dppx)
{
    /* Styles */
}

/* Landscape View */
@media
only screen and (min-width: 361px) and (-webkit-min-device-pixel-ratio: 1.25),
only screen and (min-width: 361px) and ( min--moz-device-pixel-ratio: 1.25),
only screen and (min-width: 361px) and ( -o-min-device-pixel-ratio: 1.25/1),
only screen and (min-width: 361px) and ( min-device-pixel-ratio: 1.25),
only screen and (min-width: 361px) and ( min-resolution: 200dpi),
only screen and (min-width: 361px) and ( min-resolution: 1.25dppx)
{
    /* Styles */
}
4

1 に答える 1