小程序css实现瀑布流

CSS3 多列实现

  • column-count 定义几列
  • column-gap 列间距

wxml的布局


  
     
  
  

样式代码wxss

.image {
  width: 100%;
   margin:0 auto;
}
.time-text{
  font-size: 14px;
  color: #fff;
}
.item-text-view{
  background: #000000;
  height: 30px;
  position: relative;
  margin-top: -35px;
  display: block;
  opacity: 0.6
}
.content{
  margin: 0.5%;
  column-count: 2;
  column-gap: 0px;
}
.item{
  width: 98%;
  height: auto;
  text-align: center;
  margin-left:  0.5%;
  margin-right: 0.5%;
  margin-bottom: 0.5%;
  display: inline-block;
  border:1px solid #ccc;
}

这样就实现了瀑布流 。
小程序css实现瀑布流_第1张图片

这样完了么 (如果你只有一页数据你可以无视后面的内容),你会发现如果是一个长列表数据。 随着数据不断添加 ,右边会出现闪烁,图片位置在不断的变化,显然这不是咱要的瀑布流。

下来不要用css3的样式就分列了 我们自己手动去分列。
和css3实现代码差不多 就是多了一些判断分列!

wxml的布局


  
    
      
    
  
  
    
      
    
  

这个方法是网上找到的办法 微信小程序 瀑布流布局

.image {
  width: 100%;
   margin:0 auto;
}
.time-text{
  font-size: 14px;
  color: #fff;
}
.item-text-view{
  background: #000000;
  height: 30px;
  position: relative;
  margin-top: -35px;
  display: block;
  opacity: 0.6
}
.content{
  margin: 0.5%;
}
.item{
  width: 98%;
  height: auto;
  text-align: center;
  margin-left:  0.5%;
  margin-right: 0.5%;
  margin-bottom: 0.5%;
  display: inline-block;
  border:1px solid #ccc;
}

最重要的样式就是没列的宽度不超过50%要就到下面去了 就不是两列了。

.item-view{
   width: 50%;
   float: left;
}

到这里就实现了瀑布流。

小程序css实现瀑布流_第2张图片

css3实现的每个item的顺序其实都不是想要的,仔细看会发现的。

原文:https://blog.csdn.net/yuf0812/article/details/80255921

你可能感兴趣的:(小程序)