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 1. Title 2. Code 3. Results IV....
1. Still use PHP script to execute. Command line ...
Mac comes with Apache environment Open Terminal a...
Three ways to introduce CSS 1. Inline styles Adva...
1. COUNT(*) and COUNT(COL) COUNT(*) usually perfo...
Because the Base images pulled by Docker, such as...
Effect: CSS style: <style type="text/css&...
Basic Concepts Absolute positioning: An element b...
Today I designed a dynamic window style for publis...
The reason is that this type of web page originate...
Preface Use js to achieve a year rotation selecti...
I am almost going moldy staying at home due to th...
Table of contents 1. Data Type 1. What is MySQL s...
Today we are going to make origami airplanes (the...
background All company websites need to support t...