您现在的位置是:首页 > 网站制作 > CSS3|Html5CSS3|Html5
纯css瀑布流
蒙xs2022-03-25【CSS3|Html5】人已围观
简介css瀑布流
<template>
<div class="box-app">
<div class="backColor">
<div class="imgFel">
<div class="list" v-for="item in list" :key="item.img">
<img :src="item.img" alt="" />
<div class="bottomTxt">
<h3>{{ item.direction }}</h3>
<p>哇哈哈打折优化</p>
</div>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
data() {
return {
list: [
{
img: "https://menghn.com/d/file/p/2020/05-22/5cf87ff65f64314284bf36557ba632e3.jpg",
direction: "哇哈哈",
},
{
img: "https://menghn.com/d/file/p/2020/05-22/b6472aa7e2229fe152f746eb31f2da34.jpg",
direction: "哇哈哈1",
},
{
img: "https://menghn.com/d/file/p/2020/05-22/a34cd05cbd4b30f51a134599e7793b90.jpg",
direction: "哇哈哈2",
},
{ img: "https://picsum.photos/360/460?random=1", direction: "哇哈哈3" },
{ img: "https://picsum.photos/360/520?random=2", direction: "哇哈哈4" },
{ img: "https://picsum.photos/360/420?random=3", direction: "哇哈哈5" },
{ img: "https://picsum.photos/360/420?random=4", direction: "哇哈哈6" },
{ img: "https://picsum.photos/360/480?random=5", direction: "哇哈哈7" },
{ img: "https://picsum.photos/360/500?random=6", direction: "哇哈哈8" },
{ img: "https://picsum.photos/360/500?random=7", direction: "哇哈哈9" },
{
img: "https://picsum.photos/360/400?random=8",
direction: "哇哈哈10",
},
{
img: "https://picsum.photos/360/440?random=9",
direction: "哇哈哈哇哈哈",
},
],
};
},
};
</script>
<style scoped>
.box-app {
height: 100%;
}
.imgFel {/*关键代码*/
-moz-column-count: 2; /* Firefox */
-webkit-column-count: 2; /* Safari and Chrome */
column-count: 2;
column-gap: 0;
}
.imgFel img {
width: 100%;
display: block;
height: auto;
border-radius: 5px;
object-fit: cover;/*防止图片变形*/
}
.list {
padding:8px 2px;
border-radius: 5px;
overflow: hidden;
}
.bottomTxt {
padding: 10px;
background: #fff;
min-height: 100px;
}
.backColor {
background: #f8f8f8;
min-height: 100%;
}
</style>
Tags:
很赞哦! ()
上一篇:vue 单页面背景全局颜色设置
下一篇:css文字过长左右滑动
随机图文
-
十条设计原则教你学会如何设计网页布局!
网页常见的布局有很多种,单列布局,多列布局.其中单列布局是国外很多网站比较常用的.咱们很多站长以及门户网站都使用的是是两列布局,很少用三列布局的.下面我来分享下我们常用的网页布局格式以及设计技巧 -
三步实现滚动条触动css动画效果
现在很多网站都有这种效果,我就整理了一下,分享出来。利用滚动条来实现动画效果,ScrollReveal.js 用于创建和管理元素进入可视区域时的动画效果,帮助你的网站增加吸引力 -
【分享】css3侧边栏导航不同方向划出效果
设定一组侧边栏导航菜单,然后可以从任何一边滑出。有两种实现方式,一种固定菜单,一种从左右两侧推出 -
别让这些闹心的套路,毁了你的网页设计
网页设计和做人一样,需要少一些套路,多一些真诚。那么下面就为大家揭穿那些看似好用,但用户体验并不好的设计模式。另外再附上解决办法,避免网页设计中出现这些问题