Mini Program to Implement Text Circular Scrolling Animation

Mini Program to Implement Text Circular Scrolling Animation

This article shares the specific code of the applet to realize the text loop scrolling through examples for your reference. The specific content is as follows

Solving the problem:

1. Text loop playback effect

2. Exit the applet and stop the hidden background animation (solved)

Effect:

Code:

wxml

<view animation="{{animation}}" class="animation">
  919 test use - small program loop playback~~~
</view>

wxss

.animation{
  width: 100%;
  transform: translateX(100%);
  position: fixed;
  top: 45%;
  font-size: 16px;
  font-weight: bold;
}

Final js

/**
   * Life cycle function - listen for the completion of the initial rendering of the page*/
  onReady: function () {
    this.bindAnimation();
  },
 
  bindAnimation(){
    var this_ = this;
      var animation = wx.createAnimation({
        duration: 5000,
        timingFunction: 'linear',
        transformOrigin:"100% 0 0"
      })
      animation.translateX('-100%').step();
      this.setData({
        animation:animation.export(),
      })
      //Set up loop animation this.animation = animation;
      setInterval(function(){
        //The second animation text position initialization this.Animation2();
 
        // Delay the scrolling animation (the effect will be better)
        setTimeout(function(){
          this.animation.translateX('-100%').step();
          this.setData({
            animation: animation.export(),
          })
        }.bind(this),200);
 
        
      }.bind(this),5000);
 
  },
 
  /**
   * Initialize the second animation text position*/
  Animation2(){
    var this_ = this;
    var animation2 = wx.createAnimation({
      duration: 0,
      timingFunction: 'linear',
      transformOrigin:"100% 0 0"
    })
    animation2.translateX('100%').step();
    this_.setData({
      animation:animation2.export(),
    })
  },
 
  /**
   * Solve the problem of mini program exit and background animation stopping */
  onHide: function () {
    //Solve the problem of mini program exit and background animation stopping //Re-trigger the animation method this.bindAnimation();
},

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:
  • How to start and pause the loop animation of the mpvue applet
  • WeChat applet realizes looping animation effect
  • WeChat applet development animation loop animation to achieve the effect of floating clouds

<<:  Detailed explanation of MySQL execution principle, logical layering, and changing database processing engine

>>:  Tutorial on installing Docker in Windows 10 subsystem Ubuntu (WSL) (with pictures and text)

Recommend

Summary of common Nginx techniques and examples

1. Priority of multiple servers For example, if e...

Problems with nodejs + koa + typescript integration and automatic restart

Table of contents Version Notes Create a project ...

The neglected special effects of META tags (page transition effects)

Using js in web design can achieve many page effec...

How to solve the problem of too many open files in Linux

The cause is that the process opens a number of f...

Install docker offline by downloading rpm and related dependencies using yum

You can use yum to install all dependencies toget...

Use the njs module to introduce js scripts in nginx configuration

Table of contents Preface 1. Install NJS module M...

Several ways to implement "text overflow truncation and omission" with pure CSS

In our daily development work, text overflow, tru...

Detailed explanation of the difference between $router and $route in Vue

We usually use routing in vue projects, and vue-r...

MySQL replication table details and example code

MySQL replication table detailed explanation If w...

Docker implements re-tagging and deleting the image of the original tag

The docker image id is unique and can physically ...

How to pop up a temporary QQ dialog box to chat online without adding friends

In fact, this is very simple. We add an a tag to ...

How to use firewall iptables strategy to forward ports on Linux servers

Forwarding between two different servers Enable p...

MySQL 8.0.15 winx64 installation and configuration method graphic tutorial

This article shares the installation and configur...

Optimal web page width and its compatible implementation method

1. When designing a web page, determining the widt...