Example of implementing the skeleton screen of WeChat applet

Example of implementing the skeleton screen of WeChat applet

In order to optimize the user experience, the skeleton screen has always been the preferred display method by developers. It is a display method that occupies the first screen and will not make the viewer anxious due to long waiting time. The implementation of the skeleton screen in the mini program is relatively simple, but students who have never used it will inevitably go astray. Today I will share the implementation of the skeleton screen in the mini program.

What is a skeleton screen

The skeleton screen is a blank version of the page, which is usually roughly outlined by some gray blocks before the page is fully rendered. After the data is loaded, it is replaced with the real content. Usually in a mini program, we need to manually maintain the code of the skeleton screen. When the business changes, the skeleton screen code also needs to be adjusted. For the convenience of development, the developer tool provides the ability to automatically generate skeleton screen code.

How to generate skeleton screen in applet

WeChat developer tools can generate a skeleton screen for the current page. The tool entrance is located at the three dots in the lower right corner of the simulator panel.

Introduction method

The skeleton screen code is introduced through the mini program template. Taking the pages/index/index page as an example, the introduction method is as follows.

<!-- pages/index/index.wxml import template -->
<import src="index.skeleton.wxml"/>
<template is="skeleton" wx:if="{{loading}}" data="{{}}"/>
/* Import styles into pages/index/index.wxss*/
@import "index.skeleton.wxss";

Show and Hide

Same as ordinary templates, display and hiding are controlled by wx:if.
You can set delayed loading, or hide the skeleton screen after all data requests for the page are successful.
The lazy loading code is placed in the onLoad life cycle, the code is as follows:

   // Progressively load data and gradually hide loading
  progressiveLoad() {
    setTimeout(() => {
      this.setData({
        loading: false
      })
    }, 1000)
  },

  onLoad() {
    this.progressiveLoad() // Progressively load data and gradually hide loading
  }

Developers can also set the color and shape of text, images, and buttons as needed, and ignore or hide some page elements according to excludes, remove, hide, etc. to obtain better display effects. For specific configuration, see the official document of the skeleton screen

This is the end of this article about the implementation example of the WeChat applet skeleton screen. For more relevant applet skeleton screen content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • A more elegant WeChat applet skeleton screen implementation
  • How to use skeleton screen in WeChat applet
  • Taro applet adds skeleton screen implementation code
  • How to build a skeleton screen for a mini program
  • Detailed record of the application and implementation steps of the WeChat applet skeleton screen

<<:  MySQL common statements for viewing transactions and locks

>>:  Detailed explanation of Docker common commands Study03

Recommend

Detailed explanation of Linux netfilter/iptables knowledge points

Netfilter Netfilter is a packet processing module...

Mysql sorting and paging (order by & limit) and existing pitfalls

Sorting query (order by) In e-commerce: We want t...

Detailed steps for installing and debugging MySQL database on CentOS7 [Example]

This example requires downloading and installing ...

Tutorial on binary compilation and installation of MySql centos7 under Linux

// It took me a whole afternoon to install this, ...

Nodejs converts JSON string into JSON object error solution

How to convert a JSON string into a JSON object? ...

Docker cleaning killer/Docker overlay file takes up too much disk space

[Looking at all the migration files on the Intern...

Introduction to the use of MySQL pt-slave-restart tool

Table of contents When setting up a MySQL master-...

Tips for implementing list loop scrolling based on jQuery (super simple)

I saw a good idea and recorded it. I have used jQ...

Hide div in HTML Hide table TABLE or DIV content css style

I solved a problem tonight that has been botherin...

Summary of Kubernetes's application areas

Kubernetes is the leader in the container orchest...

Mysql database index interview questions (basic programmer skills)

Table of contents introduction Indexing principle...

A brief talk about JavaScript variable promotion

Table of contents Preface 1. What variables are p...

View the number of files in each subfolder of a specified folder in Linux

count script #!/bin/sh numOfArgs=$# if [ $numOfAr...

Detailed explanation of the use of CSS3 rgb and rgba (transparent color)

I believe everyone is very sensitive to colors. C...