vue滑動吸頂及錨點定位的示例代碼
在上篇文章給大家介紹了vue實現(xiàn)吸頂、錨點和滾動高亮按鈕效果 感興趣的朋友可以點擊查看https://www.jb51.net/article/172365.htm
今天給大家繼續(xù)分享vue滑動吸頂及錨點定位的代碼,具體內(nèi)容如下所示:
Vue項目中需要實現(xiàn)滑動吸頂以及錨點定位功能。template代碼如下:
<template><div class='main'> <div id=’menu’> <ul> <li v-for='item in tabList' @click=’clickTab’></li> </ul> </div> <div id=’div1’></div> <div id=’div2’></div> <div id=’div3’></div></div> </template>
(1)滑動吸頂:
監(jiān)聽scroll事件,獲取頁面的滾動距離,一旦滾動距離大于目標值,實現(xiàn)滑動吸頂功能。
public isFixed = false;public mounted() { this.menuTop = (document.getElementById(’menu’) as any).offsetTop; window.addEventListener(’scroll’, this.handleScroll); }public handleScroll() { const scrollTop = document.documentElement.scrollTop || document.body.scrollTop; // 獲取滑動距離 if (scrollTop < this.menuTop ) { this.isFixed = false; } else { this.isFixed = true; // 設(shè)置fixed定位 } }public destroyed() { window.removeEventListener(’scroll’, this.handleScroll);}
(2)錨點定位。點擊tab,設(shè)置頁面滾動距離。
public clickTab(index: number) { this.activeIndex = index; this.isFixed = true; const menuHeight= (document.getElementById(’menu’) as any).offsetHeight; const div1= (document.getElementById(’div1’) as any).offsetTop; const div2= (document.getElementById(’div2’) as any).offsetTop; const div3= (document.getElementById(’div3’) as any).offsetTop; const div4= (document.getElementById(’div4’) as any).offsetTop; switch (index) { case 0: document.body.scrollTop = document.documentElement.scrollTop = div1 - menuHeight; break; case 1: document.body.scrollTop = document.documentElement.scrollTop = div2 - menuHeight; break; case 2: document.body.scrollTop = document.documentElement.scrollTop = div3 - menuHeight; break; case 3: document.body.scrollTop = document.documentElement.scrollTop = div4 - menuHeight; break; default: document.body.scrollTop = document.documentElement.scrollTop = div1- menuHeight; } }
總結(jié)
到此這篇關(guān)于vue滑動吸頂及錨點定位的示例代碼的文章就介紹到這了,更多相關(guān)vue 滑動吸頂錨點定位內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. 關(guān)于WPF WriteableBitmap類直接操作像素點的問題2. JavaScript前端中的偽類元素before和after使用詳解3. ASP基礎(chǔ)入門第一篇(ASP技術(shù)簡介)4. asp取整數(shù)mod 有小數(shù)的就自動加15. 源碼分析MinimalApi是如何在Swagger中展示6. PHP laravel實現(xiàn)基本路由配置詳解7. ThinkPHP5實現(xiàn)JWT Token認證的過程(親測可用)8. 熊海CMS代碼審計漏洞分析9. PHP JSAPI調(diào)支付API實現(xiàn)微信支付功能詳解10. 表單中Readonly和Disabled的區(qū)別詳解
