在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
前提条件: <meta name="viewport" content="width=750,user-scalable=no,target-densitydpi=device-dpi,viewport-fit=cover"> 效果图如下:
需求分析 高宽: 1张图【宽320,高320】[2倍稿尺寸] 间距: 2张时,【最后一张】只有left方向margin 圆角10: 1张图时【都有】圆角 归纳法 大家在中学的时候都学过数学的归纳法,就是一个命题先求出n=1的时候成立,然后假设n=k成立,证明n=k+1也成立,从而证得命题在n=k【k=任意实数】的时候都成立。 代码 <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实现动态图片的九宫格布局的文章就介绍到这了,更多相关css 九宫格布局内容请搜索极客世界以前的文章或继续浏览下面的相关文章,希望大家以后多多支持极客世界! |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论