Vue achieves the top effect through v-show

Vue achieves the top effect through v-show

html

    <div class="totop" v-show="toTopShow" @click="toTop()">top</div>

CSS

.totop {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  background-color: white;
  position: fixed;
  bottom: 75px;
  right: 10px;
  text-align: center;
}

data

 data() {
    return {
  toTopShow: false,
      srcoll: 0,
}
},

Listening for events

  watch:
    srcoll() {
      if (this.srcoll > 400) {
        this.toTopShow = true;
      } else {
        this.toTopShow = false;
      }
    },
  },

Loading Event

 mounted() {
    window.addEventListener("scroll", this.srcollShow);
  },

methods:

 methods: {
    srcollShow() {
      this.srcoll =
        window.pageYOffset ||
        document.documentElement.scrollTop ||
        document.body.scrollTop;
    },
 
 
 toTop() {
      this.toTopSpeed ​​= setInterval(() => {
        document.documentElement.scrollTop =
          document.documentElement.scrollTop - 20;
//Delayed scrolling animation by changing numbers if (this.srcoll < 10) {
          clearInterval(this.toTopSpeed);
        }
      }, 1);
    },
}

The above operation is achieved by monitoring the scroll bar > 400, the top button appears, and click the top button to slowly return to the top, below 400 hide, img and so on

This is the end of this article about how to use v-show to achieve the top effect in vue. For more relevant vue back to the top effect content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of Vue's scroll event listener back to the top
  • Vue.js implements the animation effect of returning to the top
  • Vue implements the animation effect of returning to the top and bottom
  • An example of returning to the top after vue router jumps

<<:  HTML left, center, right adaptive layout (using calc css expression)

>>:  MySQL practical window function SQL analysis class students' test scores and living expenses

Recommend

Problems and solutions for MYSQL5.7.17 connection failure under MAC

The problem that MYSQL5.7.17 cannot connect under...

Solve the problem that Navicat cannot connect to MySQL on the Linux server

At the beginning, I felt sad. The screenshots are...

Web designers should optimize web pages from three aspects

<br />With the increase of bandwidth, there ...

Understanding MySQL precompilation in one article

1. Benefits of precompilation We have all used th...

Linux implements automatic and scheduled backup of MySQL database every day

Overview Backup is the basis of disaster recovery...

Detailed explanation of built-in methods of javascript array

Table of contents 1. Array.at() 2. Array.copyWith...

Vue+SSM realizes the preview effect of picture upload

The current requirement is: there is a file uploa...

Linux cut command explained

The cut command in Linux and Unix is ​​used to cu...

Serial and parallel operations in JavaScript

Table of contents 1. Introduction 2. es5 method 3...

How to filter out duplicate data when inserting large amounts of data into MySQL

Table of contents 1. Discover the problem 2. Dele...

Implementation of formatting partitions and mounting in Centos7

Linux often encounters situations such as adding ...

JavaScript to achieve digital clock effect

This article example shares the specific code of ...

Using react+redux to implement counter function and problems encountered

Redux is a simple state manager. We will not trac...

Detailed explanation of three ways to cut catalina.out logs in tomcat

1. Log4j for log segmentation 1) Prepare three pa...