小程序实现Grid布局

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

参考

小程序FlexDemo:  https://github.com/icindy/wxflex

阮一峰博客:flex详解  http://www.ruanyifeng.com/blog/2015/07/flex-grammar.html
 

//index.js
const TAG = "index"
//获取应用实例
const app = getApp()

Page({
    data: {
        datas: ["https://gitee.com/index/ent_poster/banner_5_1_a.png",
            "https://gitee.com/index/ent_poster/banner_5_1_a.png",
            "https://gitee.com/index/ent_poster/banner_5_1_a.png",
            "https://gitee.com/index/ent_poster/banner_5_1_a.png"]
    },
    onLoad: function () {
        console.log(TAG, "onLoad")
    },
})


     
        
    
.parent {
  width: 100%;
  background-color: black;
  display: flex;
  flex-flow: row wrap;
  align-content: flex-start;
  padding-left: 2%;
  padding-right: 2%;
}

.child {
  box-sizing: border-box;
  background-color: white;
  flex: 0 0 44%;
  height: 100px;
  border: 1px solid red;
  margin-top: 4%;
  margin-left: 2%;
  margin-right: 2%;
}

最后效果

小程序实现Grid布局_第1张图片

 

 

 

 

 

 

 

 

转载于:https://my.oschina.net/sfshine/blog/1797246

你可能感兴趣的:(小程序实现Grid布局)