Effect: Code: <template> <div class="back-top"> <div > <img src="imgsrc" class="line" :class="isHide? 'isHide': 'isShow'" :style="{display: (firstShow? 'block': 'none')}" @click="backTop"> </div> </div> </template> <script> export default { name: "backTop", data(){ return { firstShow: false, //Initialize hidden components isHide: false, scrollFLag: true, } }, created() { document.addEventListener('scroll', () => { let scroll = document.documentElement.scrollTop if(scroll > 200){ this.isHide = false this.firstShow = true }else{ this.isHide = true } }) }, methods: { backTop(){ if(this.scrollFLag){ this.scrollFLag = false //Screen height let scroll = document.documentElement.scrollTop let scrollTimer = setInterval(()=> { scroll -= 50 document.documentElement.scrollTop = Math.max(scroll, 0) if( scroll <= 0){ clearInterval(scrollTimer) } }, 10) this.scrollFLag = true } }, }, } </script> <style scoped lang="scss"> .back-top{ position: fixed; top: 0; right: 10vw; width: 20px; height: 500px; z-index: 200; .line{ width: 12vw; height: 100%; z-index: 20; cursor: pointer; opacity: 0.8; transform: translateY(-100%); &:hover{ opacity: 1; } } .isShow{ animation: back-top-move 0.5s forwards linear, back-top-yurayura 2s 0.6s forwards linear infinite; } .isHide{ animation: back-top-hide 0.5s forwards linear; } } @keyframes back-top-hide { from { transform: translateY(0); } to { transform: translateY(-100%); } } @keyframes back-top-move { to { transform: translateY(0); } } @keyframes back-top-yurayura { 0%{transform-origin: top center;transform: rotate(0)} 25%{transform-origin: top center;transform: rotate(2deg)} 75%{transform-origin: top center;transform: rotate(-2deg)} 100%{transform-origin: top center;transform: rotate(0)} } </style> This is the end of this article about the complete code implementation of the vue backtop component. For more related vue backtop component content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Mysql Sql statement comments
>>: Detailed explanation of redis persistence, master-slave synchronization and sentinel under Linux
1.MySQL replication concept It means transferring...
difficulty Two mask creation of svg graphics Firs...
In the previous article, I introduced the detaile...
In Ubuntu, you often encounter the situation wher...
Table of contents 1. Generate a certificate 2. En...
In our daily work, we often come into contact wit...
question Question 1: How to solve the performance...
Table of contents background Technical Solution S...
The HTTP status code is a 3-digit code used to in...
Table of contents Tutorial Series 1. Backup strat...
Connection query: It is the result of connecting ...
Table of contents Vue2.x Usage Global Registratio...
The display effects on IE, Fir...
Master-slave synchronization, also called master-...
1. The difference between the command > and &g...