css媒體查詢aspect-ratio寬高比在less中的使用

来源:https://www.cnblogs.com/beileixinqing/archive/2019/08/07/11312800.html
-Advertisement-
Play Games

css媒體查詢有一個 寬高比很方便,aspect-ratio ,可以直接使用寬/高 來進行頁面適配 使用樣例如下: 註意三點: 1、寬高比一定是比值的形式,不能直接寫小數,寬/高 2、在less中直接寫寬高比也不會生效,因為less會編譯成小數,可以在比值前面加一個 ~ 完美解決 3、避免樣式覆蓋, ...


css媒體查詢有一個 寬高比很方便,aspect-ratio ,可以直接使用寬/高 來進行頁面適配   使用樣例如下:

    // 寬高比在((320/50)+(728/90))/2 兩個尺寸中間值以內 適配 320*50 設計圖樣式
    @media screen and (min-aspect-ratio: ~"249/50") and (max-aspect-ratio: ~"29/4"){
      @base: 320;
      @convert: 375/@base;
      .container{
        width: 100vw;
        height:100%;
        position:relative;
        display:flex;
        flex-flow:row nowrap;
        align-items: center;
        .info-icon-box{
          .width(46*@convert);
          .height(46*@convert);
          .border-radius(10*@convert);
          .border(1@convert,#e3e3e3);
          overflow: hidden;
          .margin-left(10*@convert);
          .min-width(46*@convert);
          .max-width(46*@convert);
          flex-grow: 0;
          img {
            width: 100%;
            height: 100%;
            .border-radius(10);
            vertical-align: top;
          }
        }
        .info-other{
          flex-grow: 1;
          display:flex;
          flex-flow:column nowrap;
          overflow: hidden;
          height:100%;
          .margin-left(10*@convert);
          .info-wrap.roll-box{
            height:200%;
          }
          .info-box{
            width:100%;
            height:50%;
            flex-grow: 1;
            display:flex;
            flex-flow:row nowrap;
            align-items: center;
            .info{
              width:48vw;
              height: 100%;
              flex-grow: 1;
              display: flex;
              //align-items: center;
              flex-direction:column;
              justify-content: center;
              .info-title{
                font-weight:bold;
                .font-size(16*@convert);
                .line-height(26*@convert);
                color: #484848 ;
                .margin-bottom(4*@convert);
              }
              .info-other-rate {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                position:relative;
                z-index:2;
                .star-number{
                  .font-size(15*@convert);
                  color:#4a4a4a;
                  .padding-right(5*@convert);
                }
                .star-evaluate {
                  position: relative;
                  .width(100*@convert);
                  .height(16*@convert);
                  background: url("../../assets/images/star_gray.png") no-repeat 0 0;
                  background-size: cover;
                  overflow: hidden;
                  .star {
                    position: absolute;
                    top: 0;
                    left: 0;
                    display: inline-block;
                    .height(16*@convert);
                    background: url("../../assets/images/star.png") no-repeat 0 0;
                    background-size: cover;
                    overflow: hidden;
                  }
                  .star-1 {
                    .width(8*@convert);
                  }
                  .star-2 {
                    .width(21*@convert);
                  }
                  .star-3 {
                    .width(29*@convert);
                  }
                  .star-4 {
                    .width(42*@convert);
                  }
                  .star-5 {
                    .width(50*@convert);
                  }
                  .star-6 {
                    .width(63*@convert);
                  }
                  .star-7 {
                    .width(71*@convert);
                  }
                  .star-8 {
                    .width(84*@convert);
                  }
                  .star-9 {
                    .width(92*@convert);
                  }
                  .star-10 {
                    .width(100*@convert);
                  }
                }
              }
              .info-desc-box{
                display: none;
              }
            }
            .info-install{
              .min-width(66*@convert);
              width:fit-content;
              .height(40*@convert);
              .line-height(40*@convert);
              box-sizing: border-box;
              .padding-all(0,4*@convert,0,4*@convert);
              .font-size(14*@convert);
              color:#fff;
              text-align: center;
              .margin-right(20*@convert);
              background:url("../../assets/images/btn_download_short_shadow.png") no-repeat 0 0;
              background-size:100% 100%;
            }
          }
          .info-desc-box {
            width:100%;
            height:50%;
            .padding-all(4*@convert, 26*@convert, 4*@convert, 0);
            box-sizing: border-box;
            overflow: hidden;
            .info-desc{
              .font-size(14*@convert);
              .line-height(20*@convert);
              color: #484848 ;
              .info-other-rate{
                display: none;
              }
            }
          }
        }
      }
    }
    // 寬高比大於((320/50)+(728/90))/2 兩個尺寸中間值 適配 728*90 設計圖樣式
    @media screen and (min-aspect-ratio: ~"29/4"){
      @base: 728;
      @convert: 375/@base;
      .container{
        width: 100vw;
        height:100%;
        position:relative;
        display:flex;
        flex-flow:row nowrap;
        align-items: center;
        .info-icon-box{
          .width(88*@convert);
          .height(88*@convert);
          .border-radius(10*@convert);
          .border(1@convert,#e3e3e3);
          overflow: hidden;
          .margin-left(10*@convert);
          .min-width(88*@convert);
          .max-width(88*@convert);
          flex-grow: 0;
          img {
            width: 100%;
            height: 100%;
            .border-radius(10);
            vertical-align: top;
          }
        }
        .info-other{
          flex-grow: 1;
          display:flex;
          flex-flow:column nowrap;
          overflow: hidden;
          height:100%;
          .margin-left(10*@convert);
          .info-wrap{
            height:100%;
            .info-box{
              width:100%;
              height:100%;
              flex-grow: 1;
              display:flex;
              flex-flow:row nowrap;
              align-items: center;
              .info{
                width:48vw;
                height: 100%;
                flex-grow: 1;
                display: flex;
                flex-direction:column;
                justify-content: center;
                .margin-right(20*@convert);
                .info-title-rate{
                  display: flex;
                  flex-flow: row nowrap;
                }
                .info-title{
                  font-weight:bold;
                  .font-size(24*@convert);
                  .line-height(37*@convert);
                  color: #484848 ;
                  .margin-bottom(4*@convert);
                }
                .info-other-rate {
                  display: flex;
                  align-items: center;
                  justify-content: flex-start;
                  position:relative;
                  z-index:2;
                  .star-number{
                    .font-size(15*@convert);
                    color:#4a4a4a;
                    .padding-right(5*@convert);
                  }
                  .star-evaluate {
                    position: relative;
                    .width(100*@convert);
                    .height(16*@convert);
                    background: url("../../assets/images/star_gray.png") no-repeat 0 0;
                    background-size: cover;
                    overflow: hidden;
                    .star {
                      position: absolute;
                      top: 0;
                      left: 0;
                      display: inline-block;
                      .height(16*@convert);
                      background: url("../../assets/images/star.png") no-repeat 0 0;
                      background-size: cover;
                      overflow: hidden;
                    }
                    .star-1 {
                      .width(8*@convert);
                    }
                    .star-2 {
                      .width(21*@convert);
                    }
                    .star-3 {
                      .width(29*@convert);
                    }
                    .star-4 {
                      .width(42*@convert);
                    }
                    .star-5 {
                      .width(50*@convert);
                    }
                    .star-6 {
                      .width(63*@convert);
                    }
                    .star-7 {
                      .width(71*@convert);
                    }
                    .star-8 {
                      .width(84*@convert);
                    }
                    .star-9 {
                      .width(92*@convert);
                    }
                    .star-10 {
                      .width(100*@convert);
                    }
                  }
                }
                .info-desc-box {
                  width:100%;
                  .height(20*@convert);
                  .padding-all(4*@convert, 26*@convert, 4*@convert, 0);
                  box-sizing: border-box;
                  overflow: hidden;
                  .info-desc{
                    .font-size(14*@convert);
                    .line-height(20*@convert);
                    color: #484848 ;
                    .info-other-rate{
                      display: none;
                    }
                  }
                  .roll-box{
                    height:auto;
                  }
                }
              }
              .info-install{
                .min-width(66*@convert);
                width:fit-content;
                .height(40*@convert);
                .line-height(40*@convert);
                box-sizing: border-box;
                .padding-all(0,4*@convert,0,4*@convert);
                .font-size(14*@convert);
                color:#fff;
                text-align: center;
                .margin-right(20*@convert);
                background:url("../../assets/images/btn_download_short_shadow.png") no-repeat 0 0;
                background-size:100% 100%;
              }
            }
          }
          &.info-desc-box {
            display: none;
          }
        }
      }
    }

 

註意三點:

1、寬高比一定是比值的形式,不能直接寫小數,寬/高

2、在less中直接寫寬高比也不會生效,因為less會編譯成小數,可以在比值前面加一個  ~   完美解決

3、避免樣式覆蓋,最好把大比例的媒體查詢寫在後面

參考鏈接:

https://developer.mozilla.org/zh-CN/docs/Web/Guide/CSS/Media_queries    媒體查詢

http://www.zhangyunling.com/837.html   device-aspect-ratio與aspect-ratio單屏佈局

https://stackoverflow.com/questions/50465331/scss-media-query-aspect-ratio-not-working   scss中不生效


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 前言 由於最近在學習node+express,學習到持久化存儲章節需要連接mongodb資料庫,然後之前也有試過安裝mongodb但是失敗了,這次就找了很多資料,終於安裝完成了,故此記錄下來安裝步驟,提供給有需要的人. 安裝流程 1. 下載mongodb安裝包 官網地址:https://www.mo ...
  • Redis事務 事務提供了一種"將多個命令打包,一次性提交並按順序執行"的機制,提交後在事務執行中不會中斷。只有在執行完所有命令後才會繼續執行來自其他客戶的消息。 Redis中的使用 Redis通過multi,exec,discard,watch實現事務功能。 1. multi:開始事務 2. ex ...
  • ==註:wm_concat(str1) 11g 後不支持使用== LISTAGG函數用法 ...
  • mysql資料庫相關流程圖/原理圖 1.mysql主從複製原理圖 mysql主從複製原理是大廠後端的高頻面試題,瞭解mysql主從複製原理非常有必要。 主從複製原理,簡言之,就三步曲,如下: 主資料庫有個bin-log二進位文件,紀錄了所有增刪改Sql語句。(binlog線程) 從資料庫把主資料庫的 ...
  • 1、結構化查詢語言——SQL,關係型資料庫通信的標準語言; 2、關係型資料庫:表的邏輯單元組成,這些表在內部彼此關聯,組成了關係型資料庫; 3、SQL會話:用戶用SQL命令語句與關係型資料庫進行交互時發生的事情。當用戶與資料庫建立鏈接時,會話就建立了,當用戶與資料庫斷開連接時,會話就結束了。 con ...
  • Android 屬性動畫初戰,通過屬性動畫實現類似於美團外賣購物車消失顯示的動效。 ...
  • 前言 有時候我們的應用需要系統級的許可權來實現一些功能(如靜默安裝),這時候需要給應用打上系統簽名,常規操作打包apk,解壓apk,刪除META INF中CERT.RSA和 CERT.SF,然後壓縮,用系統簽名工具簽名,一頓操作後可能十分鐘過去了,實在太過繁瑣,因此我們做了一些簡化,用gradle+s ...
  • ARetrofit 是一款針對Android組件之間通信的路由框架,實現快速組件化開發的利器。本文主要講述 ARetrofit 實現的原理。 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...