《样式设计004:布局-使用grid》

描述:在开发小程序过程中,发现一些不错的案例,平时使用也比较多,稍微总结了下经验,以下内容可以直接复制使用,希望对大家有所帮助,废话不多说直接上干货!

一、小程序布局-使用grid

(一)样式图

(二)样式代码

2.1:wxml代码


<!-- 分类栏 -->
<view class="qxjs-classified-bar margin-top" style="width: 100%; height: 30px; display: flex; flex-direction: row;">
  <view class="qxjs-classified-icon margin-left-sm  " style="width: 8%; background-position: -24px -75px;"></view>
  <view class="qxjs-classified-title" style="width: 88%; ">这是分类001</view>
</view>
 
<view class="qxjs-classified-cont bg-grey">
  <view class="qxjs-classified-item {{index%2==0?'bg-cyan':'bg-blue'}}" wx:for="{{contentList}}" wx:key>
    {{item.title}}
  </view>
</view>

2.2:wxjs代码

// pages/all/demo.js
Page({

  //页面的初始数据
  data: {
    contentList: [{
      id: '1001',
      contentUrl: 'https://t7.baidu.com/it/u=727460147,2222092211&fm=193&f=GIF',
      title:'这是标题部分1',
      content: '这是底部描述部分1',
    },
    {
      id: '1002',
      contentUrl: 'https://t7.baidu.com/it/u=727460147,2222092211&fm=193&f=GIF',
      title:'这是标题部分2',
      content: '这是底部描述部分2',
    },
    {
      id: '1003',
      contentUrl: 'https://t7.baidu.com/it/u=727460147,2222092211&fm=193&f=GIF',
      title:'这是标题部分3',
      content: '这是底部描述部分3',
    },
    {
      id: '1004',
      contentUrl: 'https://t7.baidu.com/it/u=727460147,2222092211&fm=193&f=GIF',
      title:'这是标题部分4',
      content: '这是底部描述部分4',
    }
  ], 


  },

  // 生命周期函数--监听页面加载
  onLoad(options) {

  },
 
})

2.3:wxss代码 

/* -----------------分类-------------------- */
.qxjs-classified-icon {
  display: flex;
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  /* 垂直居中 */
  /* 设置容器高度为屏幕高度 */
  /* height: 100vh; */
  background-image: url('https://img0.baidu.com/it/u=948260463,3724272611&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=583');
  /* 设置矢量图路径 */
  background-size: 350px 350px;
  /* 设置矢量图的尺寸 */

}

.qxjs-classified-title {
  background-color: #FDFDFD;
  display: flex;
  align-items: center;
  /* 垂直居中 */
  padding-left: 5px;
  font-size: 16px;
  font-weight: bold;
  font-family: "Arial", sans-serif;
  letter-spacing: 2px;
}
 

.qxjs-classified-cont {
  margin-left: 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 两列,每列宽度相等 */
  grid-template-rows: auto;
  /* 自动高度 */
}
.qxjs-classified-item  {
  display: flex;
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  /* 垂直居中 */
  /* 设置每个子项的宽度为父级宽度的45% */
  width: 90%;
  /* 设置每个子项的高度 */
  height: 50px;
  /* 设置子项之间的垂直间隔 */
  margin: 8px 10px; 
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

大大大钢琴

喜欢!就请他吃3块钱好吃的吧!

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值