Vue implements a simple marquee effect

Vue implements a simple marquee effect

This article shares the specific code of Vue to achieve a simple marquee effect for your reference. The specific content is as follows

Rendering

Code

html

<div id="app">
    <button @click="start">Start</button>
    <button @click="stop">Stop</button>
    <p>{{msg}}</p>
</div>

vue

var app = new Vue({
    el: "#app", // indicates that the new vue instance we are creating now will control the area on the page // data is the m in mvvm, which is used to store the data of each page data:{
        msg: "Lock on Li Jiaqi's live broadcast room at 19:30 tonight, don't miss it~",
        timer: null
    },
    methods:{
        start(){
            // Use the timer text to scroll on time // Arrow function can solve the this pointing problem // The this pointing in the arrow function is consistent with that outside the function // The timer is turned on only when timer is not null if (this.timer != null) return;
            this.timer = setInterval(() => {
                // Get the first character var startMsg = this.msg.substring(0,1);
                // Get all the characters that follow var endMsg = this.msg.substring(1);
                // Reassemble msg
                this.msg = endMsg + startMsg;
            },400)
        },

        stop(){
            clearInterval(this.timer);
            // You can print the timer after clearing the timer yourself, and you will find that it is not null, so you need to reassign this.timer = null;
        }
    }
});

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:
  • Text Marquee Component Based on Vue (npm Component Package)
  • Vue implements simple marquee effect
  • Vue achieves seamless carousel effect (marquee)
  • Vue implements horizontal scrolling of marquee style text
  • Vue implements the marquee effect
  • Vue realizes simple effect of running light
  • Vue example code using timer to achieve marquee effect
  • Vue implements a simple marquee
  • Js and VUE to achieve the marquee effect
  • Detailed explanation of how to use the Vue marquee component

<<:  Examples of common Nginx misconfigurations

>>:  How to extract string elements from non-fixed positions in MySQL

Recommend

CentOS 6 uses Docker to deploy Zookeeper operation example

This article describes how to use docker to deplo...

Pure HTML and CSS to achieve JD carousel effect

The JD carousel was implemented using pure HTML a...

Specific operations of MYSQL scheduled clearing of backup data

1|0 Background Due to project requirements, each ...

Steps for importing tens of millions of data into MySQL using .Net Core

Table of contents Preliminary preparation Impleme...

HTML page jump and parameter transfer issues

HTML page jump: window.open(url, "", &q...

Detailed tutorial on installing nvidia driver + CUDA + cuDNN in Ubuntu 16.04

Preparation 1. Check whether the GPU supports CUD...

Example analysis of the impact of MySQL index on sorting

This article uses examples to illustrate the impa...

MySQL transaction, isolation level and lock usage example analysis

This article uses examples to describe MySQL tran...

Methods for defragmenting and reclaiming space in MySQL tables

Table of contents Causes of MySQL Table Fragmenta...

Process analysis of deploying ASP.NET Core applications on Linux system Docker

Table of contents 1. System environment 2. Operat...

DHCP Configuration Tutorial in CentOS7 Environment

Table of contents Configuration command steps in ...

Import CSS files using judgment conditions

Solution 1: Use conditional import in HTML docume...