zoukankan      html  css  js  c++  java
  • Bootstrap 3 媒体查询

    可以参考 Bootstrap  的媒体查询,写网站。

    html:

    <div class="bootstrap-3-media">
      <p>Mobile-First-Method</p>
      <div class="Mobile-First-Method">
    
        <div class="px320"><pre>/* Custom, iPhone Retina */ @media only screen and (min-width : 320px) { }</pre></div>
        <div class="px480"><pre>/* Extra Small Devices, Phones */ @media only screen and (min-width : 480px) { }</pre></div>
        <div class="px768"><pre>/* Small Devices, Tablets */ @media only screen and (min-width : 768px) { }</pre></div>
        <div class="px992"><pre>/* Medium Devices, Desktops */ @media only screen and (min-width : 992px) { }</pre></div>
        <div class="px1200"><pre>/* Large Devices, Wide Screens */ @media only screen and (min-width : 1200px) { }</pre></div>
    
      </div>
      <p>Non-Mobile-First-Method</p>
      <div class="Non-Mobile-First-Method">
    
        <div class="px320"><pre>/* Custom, iPhone Retina */ @media only screen and (min-width : 320px) { }</pre></div>
        <div class="px480"><pre>/* Extra Small Devices, Phones */ @media only screen and (min-width : 480px) { }</pre></div>
        <div class="px768"><pre>/* Small Devices, Tablets */ @media only screen and (min-width : 768px) { }</pre></div>
        <div class="px992"><pre>/* Medium Devices, Desktops */ @media only screen and (min-width : 992px) { }</pre></div>
        <div class="px1200"><pre>/* Large Devices, Wide Screens */ @media only screen and (min-width : 1200px) { }</pre></div>
    
      </div>
    </div>

    css:

    // https://scotch.io/tutorials/default-sizes-for-twitter-bootstraps-media-queries
    
    .px320,
    .px480,
    .px768,
    .px992,
    .px1200{
      display: none;
    }
    
    /*==================================================
    =            Bootstrap 3 Media Queries             =
    ==================================================*/
    
        // /*==========  Mobile First Method  ==========*/
    
        /* Custom, iPhone Retina */
        @media only screen and (min-width : 320px) {
          .Mobile-First-Method .px320{
            display: block;
          }
        }
    
        /* Extra Small Devices, Phones */
        @media only screen and (min-width : 480px) {
          .Mobile-First-Method .px480{
            display: block;
          }
        }
    
        /* Small Devices, Tablets */
        @media only screen and (min-width : 768px) {
          .Mobile-First-Method .px768{
            display: block;
          }
        }
    
        /* Medium Devices, Desktops */
        @media only screen and (min-width : 992px) {
          .Mobile-First-Method .px992{
            display: block;
          }
        }
    
        /* Large Devices, Wide Screens */
        @media only screen and (min-width : 1200px) {
          .Mobile-First-Method .px1200{
            display: block;
          }
        }
    
        /*==========  Non-Mobile First Method  ==========*/
    
        /* Large Devices, Wide Screens */
        @media only screen and (max-width : 1200px) {
          .Non-Mobile-First-Method .px320{
            display: block;
          }
        }
    
        /* Medium Devices, Desktops */
        @media only screen and (max-width : 992px) {
          .Non-Mobile-First-Method .px480{
            display: block;
          }
        }
    
        /* Small Devices, Tablets */
        @media only screen and (max-width : 768px) {
          .Non-Mobile-First-Method .px768{
            display: block;
          }
        }
    
        /* Extra Small Devices, Phones */
        @media only screen and (max-width : 480px) {
          .Non-Mobile-First-Method .px992{
            display: block;
          }
        }
    
        /* Custom, iPhone Retina */
        @media only screen and (max-width : 320px) {
          .Non-Mobile-First-Method .px1200{
            display: block;
          }
        }
  • 相关阅读:
    poj 2049 Let it Bead(polya模板)
    poj 1286 Necklace of Beads (polya(旋转+翻转)+模板)
    poj 2226 Muddy Fields(最小点覆盖+巧妙构图)
    poj 3692 Kindergarten (最大独立集之逆匹配)
    poj 1466 Girls and Boys(二分匹配之最大独立集)
    poj 1486 Sorting Slides(二分图匹配的查找应用)
    poj 2112 Optimal Milking (二分图匹配的多重匹配)
    PHP访问控制
    OO(Object Oriented)
    重载与重写以及重构
  • 原文地址:https://www.cnblogs.com/daysme/p/8151352.html
Copyright © 2011-2022 走看看