This article example shares the specific code of VUE to implement the bottom suction button for your reference. The specific content is as follows <template> <div id="test"> <ul class="list-box"> <li v-for="(item, key) in 50" :key="key"> {{ item }} </li> </ul> <transition name="fade"> <p :class="['go', { isFixed: headerFixed }]" v-if="headerFixed"> Suction bottom button</p> </transition> </div> </template> <script> export default { name: 'test', data() { return { headerFixed: false, } }, mounted() { window.addEventListener('scroll', this.handleScroll) }, destroyed() { window.removeEventListener('scroll', this.handleScroll) }, methods: { handleScroll() { const scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop this.headerFixed = scrollTop > 50 }, }, } </script> <style lang="scss" scoped="scoped"> #test { .list-box { padding-bottom: 50px; } .go { background: pink; text-align: center; line-height: 50px; width: 100%; } .isFixed { position: fixed; bottom: 0; } .fade-enter { opacity: 0; } .fade-enter-active { transition: opacity 0.8s; } .fade-leave-to { opacity: 0; } .fade-leave-active { transition: opacity 0.8s; } } </style> Effect picture: 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 Easily Remove Source Installed Packages in Linux
>>: Detailed explanation of the use of Join in Mysql
Table of contents Avoid using the spread operator...
<br />Use of line break tag<br>The lin...
I recently read Yahoo's 34 Golden Rules and le...
1. Change the virtual machine hardware version in...
Table of contents 1.parseInt(string, radix) 2. Nu...
Today, when I logged into the company's inter...
1) Introduction to cache mechanism In the Linux s...
1. useState: Let functional components have state...
As the application of centos on the server side b...
Through the study and application of Node, we kno...
Since there is a button in my company's produ...
After going through a lot of hardships, I searched...
Table of contents Preface Basic Usage grammar Err...
Table of contents Preface Front-end structure Bac...
Table of contents Question: Case (1) fork before ...