• 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;
          }
        }
  • 相关阅读:
    React Native 实现MQTT 推送调研 (1)
    bpmn的依赖注入
    vdom diff
    浏览器渲染与event loop
    uni-app 通过后缀名区分不同渠道版本
    网页定宽 栅格布局
    网页顶部菜单导航和左侧菜单导航的区别?
    Android利用tcpdump和wireshark抓取网络数据包
    就算做了
    我眼中的Serverless
  • 原文地址:https://www.cnblogs.com/daysme/p/8151352.html
Copyright © 2020-2023  润新知