CSS實現動態圖片的九宮格佈局

前提條件:content="width=750"css

<meta name="viewport" content="width=750,user-scalable=no,target-densitydpi=device-dpi,viewport-fit=cover">
複製代碼

效果圖以下:html

效果圖

需求分析

高寬:bash

  • 1張圖【寬320,高320】[2倍稿尺寸]
  • 2張圖時【寬332,高332】
  • 3張圖、4張圖、6張圖,7張圖、9張圖時【寬220,高220】
  • 5張圖、8張圖時【第四、第5張寬高332】,【其他220】

間距:佈局

  • 2張時,【最後一張】只有left方向margin
  • 3張時,【第2張】左右margin
  • 4張時,【第2張】和【最後一張】都只有left方向的margin,【3,4】有top方向的margin
  • 5張時,【最後一張】只有left方向margin
  • 6張、7張時,【第2張、第4張】有左右margin,從【第4張起】top有
  • 8張時,【第2張、第4張】時左右margin,從【第4張起】top有,【最後一張】只有left
  • 9張時,【第2張、第4張、第8張】有左右margin

圓角10:spa

  • 1張圖時【都有】圓角
  • 2張圖時、3張圖-【第1張左上、左下】,【最後一張右上,右下】
  • 4張圖時【第1張左上】,【第2張右上】,【第3張左下】,【最後一張右下】
  • 5張圖時【第1張左上】,【第3張右上】,【第4張左下】,【最後一張右下】
  • 6張圖時【第1張左上】,【第3張右上】,【第4張左下】,【最後一張右下】
  • 7張圖時【第1張左上】,【第3張右上】,【第7張左下、右下】
  • 8張圖時【第1張左上】,【第3張右上】,【第7張左下】,【最後一張右下】
  • 9張圖時【第1張左上】,【第3張右上】,【第7張左下】,【最後一張右下】

概括法scala

你們在中學的時候都學過數學的概括法,就是一個命題先求出n=1的時候成立,而後假設n=k成立,證實n=k+1也成立,從而證得命題在n=k【k=任意實數】的時候都成立。3d

代碼code

<div class="grid-img-box">
    <van-image class='grid-img' v-for="value in data.photo" :key="value"  fit="cover" :src="value" />
</div>
複製代碼
.grid-img{

  /**
  寬高
    1. 3n+1且是倒數第2張時
    2. 3n+1且是最後一張時
      以上兩種狀況圖片的寬高均應爲320;
      剩餘兩種狀況是:
    3. 只有一張時寬高320;
    4. 其他的狀況和索引寬高都爲220;
  */
  display: inline-block;
  width: 220px;
  height: 220px;
  &:only-child{
    width: 320px;
    height: 320px;
  }

  &:nth-child(3n+1):nth-last-child(2),
  &:nth-child(3n+2):last-child{
    width: 332px;
    height: 332px;
  }

  /**
  間距/佈局
   */

  &:nth-child(3n+2){
    margin: 0 6px;
  }
  &:nth-child(n+4){
    margin-top: 6px;
  }

  &:first-child{
    border-top-left-radius: 10px;
  }

  &:last-child{
    margin-right: 0;
    border-bottom-right-radius: 10px;
  }

  /**
  圓角
   */

  //左下圓角:最後一行第一個
  &:nth-child(3n+1){
    &:last-child,
    &:nth-last-child(2),
    &:nth-last-child(3){
      border-bottom-left-radius: 10px;
    }
  }

  //處理四個佈局
  //增大第二個margin講第三個擠到下一行
  &:nth-child(2):nth-last-child(3){
    margin-right: 220px;
  }
  //重置第二個圓角
  &:nth-child(2):nth-last-child(3){
    border-top-right-radius: 10px;
  }

  //重置第三個的margin和radius
  &:nth-child(3):nth-last-child(2){
    margin-top: 6px;
    margin-right: 6px;
    border-radius: 0 0 0 10px;
  }
  //重置第4個的圓角
  &:nth-child(4):last-child{
     border-radius: 0 0 10px 0;
  }
}
複製代碼

參考文獻 CSS實現自適應九宮格佈局cdn

相關文章
相關標籤/搜索