WeChat applet realizes the nine-square grid effect

WeChat applet realizes the nine-square grid effect

This article shares the specific code for the WeChat applet to achieve the nine-square grid effect for your reference. The specific content is as follows

1. Example diagram of Jiugongge implementation:

Tips: Description:

Use display: -webkit-flex; to make the layout compatible.

To ensure that the two pairs of three icons in each row justify-content: space-between; property.

The parent element must set flex-wrap: wrap; property to wrap, otherwise it will be displayed in one row.

The width: 33.33333333%; allocated according to its occupied size.

Use justify-content:center; property to center the element.

Use flex-direction: column; and flex-wrap: wrap; properties to set icon and text elements to be arranged vertically.

2. Define the data source in the .js file:

Page({

  /**
   * Page data source */
  data: {
    iconColor: [
      'red', 'orange', 'yellow', 'green', 'rgb(0,255,255)', 'blue', 'purple'
    ],
    iconStyle: [
      {
        "type":"success",
        "size":30,
        "color":"#32CD32"
      },
      {
        "type": "success_no_circle",
        "size": 30,
        "color": "orange"
      },
      {
        "type": "info",
        "size": 30,
        "color": "yellow"
      },
      {
        "type": "warn",
        "size": 30,
        "color": "green"
      },
      {
        "type": "waiting",
        "size": 30,
        "color": "rgb(0,255,255)"
      },
      {
        "type": "cancel",
        "size": 30,
        "color": "blue"
      },
      {
        "type": "download",
        "size": 30,
        "color": "purple"
      },
      {
        "type": "search",
        "size": 30,
        "color": "#C4C4C4"
      },
      {
        "type": "clear",
        "size": 30,
        "color": "red"
      }
    ]
  }
})

3. Define the style in the .wxss file as follows:

 /*
  Nine-grid container layout style*/
.grid-item-container {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1rpx solid #D9D9D9;
}

/*
  Item container style*/
.grid-item-child {
  display:flex;
  display: -webkit-flex;
  justify-content:center;
  flex-direction: column;
  flex-wrap: wrap;
  float: left;
  width: 33.33333333%;
  height: 200rpx;
  box-sizing: border-box;
  background-color: #FFFFFF;
  border-right: 1rpx solid #D9D9D9;
  border-bottom: 1rpx solid #D9D9D9;
}

/*
  Icon style*/
.grid-item-icon {
  display:flex;
  display: -webkit-flex;
  justify-content:center;
}

/*
 Text style*/
.grid-item-label {
  display:flex;
  display: -webkit-flex;
  justify-content:center;
  color: #666;
  font-size: 14px;
}

4. Specific use in .wxml files:

<view class='grid-item-container'>
  <block wx:for="{{iconStyle}}" wx:key="index">
    <view class='grid-item-child'>
      <view>
        <icon class='grid-item-icon' type='{{item.type}}' size='{{item.size}}' color='{{item.color}}'/>
        <text class='grid-item-label'>{{item.type}}</text>
      </view>
    </view>
  </block>
</view>

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • WeChat applet implements flip card lottery animation
  • WeChat Mini Program Version of Flip Card Game
  • WeChat applet implements nine-square lottery
  • WeChat applet project practice: Nine-grid implementation and item jump function
  • WeChat applet nine-square grid example code
  • WeChat applet realizes the nine-square grid flip animation

<<:  How to upgrade all Python libraries in Ubuntu 18.04 at once

>>:  Basic usage analysis of Explain, a magical tool for MySQL performance optimization

Recommend

Summary of MySQL's commonly used concatenation statements

Preface: In MySQL, the CONCAT() function is used ...

MySQL multi-table join query example explanation

In actual projects, there are relationships betwe...

MySQL partitioning practice through Navicat

MySQL partitioning is helpful for managing very l...

Introduction to JavaScript built-in objects

Table of contents 1. Built-in objects 2. Math Obj...

mysql 8.0.18 mgr installation and its switching function

1. System installation package yum -y install mak...

Detailed explanation of how to use join to optimize SQL in MySQL

0. Prepare relevant tables for the following test...

CSS hacks \9 and \0 may not work for hacking IE11\IE9\IE8

Every time I design a web page or a form, I am tr...

How to use the MySQL authorization command grant

The examples in this article run on MySQL 5.0 and...

Detailed explanation of MySQL index selection and optimization

Table of contents Index Model B+Tree Index select...

How to get the intersection/difference/union of two sets in mysql

Common scenarios of MySQL: getting the intersecti...

HTML tag default style arrangement

html, address,blockquote,body, dd, div,dl, dt, fie...

Comprehensive analysis of MySql master-slave replication mechanism

Table of contents Master-slave replication mechan...

MySQL trigger trigger add, delete, modify and query operation example

This article uses examples to describe the add, d...

Detailed tutorial for upgrading zabbix monitoring 4.4 to 5.0

1. Zabbix backup [root@iZ2zeapnvuohe8p14289u6Z /]...