這篇文章主要介紹Vue如何實(shí)現(xiàn)tab導(dǎo)航欄并支持左右滑動功能,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
tab導(dǎo)航欄布局:
<section class="theme-list"> <div class="fixed-nav" ref="fixednav"> <div class="fixed-nav-content"> <p v-for="(item, index) in theme" :key="index" :class="['tab-title', activeId === index && 'select-tab']" @click="changeTab(index, $event)" > {{ item }} </p> </div> </div> </section>
theme: ['CSDN博客', '博客園', '高考加油', '中考加油', '小歡喜', '七十周年'], activeId: 0
導(dǎo)航欄樣式代碼:
.theme-list { margin-top: 12px; } .fixed-nav { overflow-x: scroll; -webkit-overflow-scrolling: touch; } .fixed-nav-content { display: flex; } .tab-title { padding: 0 13px; margin-right: 12px; color: #141414; border-radius: 13px; font-size: 12px; flex-shrink: 0; height: 0.52rem; line-height: 0.52rem; }
此時我們可以實(shí)現(xiàn)下面的樣式,并且可以左右滑動tab:
需要注意的是,在樣式代碼中需要添加flex-shrink : 0
,這樣才會當(dāng)tab寬度大于外部容器寬度時不會收縮。
這樣,我們基本的tab導(dǎo)航欄已經(jīng)實(shí)現(xiàn)了,現(xiàn)在我們來實(shí)現(xiàn):點(diǎn)擊“中考加油”時,整個tab向左滑動,顯示出剩下的tab元素。
changeTab(id, event) { // 如果選擇的和當(dāng)前激活的不同 if (id !== this.activeId) { this.activeId = id; // 計算當(dāng)前按鈕的位置,看是否需要移動 const spanLeft = event.clientX; // 當(dāng)前點(diǎn)擊的元素左邊距離 const divBox = document.querySelector(".select-tab").clientWidth / 2; // 點(diǎn)擊的元素一半寬度 const totalWidths = document.body.clientWidth; // 屏幕總寬度 const widths = totalWidths / 2; // 一半的屏幕寬度 const spanRight = totalWidths - spanLeft; // 元素的右邊距離 const scrollBox = document.querySelector(".fixed-nav"); // 獲取最外層的元素 const scrollL = scrollBox.scrollLeft; // 滾動條滾動的距離 // 當(dāng)元素左邊距離 或者 右邊距離小于100時進(jìn)行滑動 if (spanRight < 100 || spanLeft < 100) { scrollBox.scrollLeft = scrollL + (spanLeft - widths) + divBox; } } }
通過這個方法可以實(shí)現(xiàn)tab的自動滾動了,但是此時還有一個問題是:在滑動的時候會顯示出滾動條,顯然是不太美觀的。
/*定義滾動條高寬及背景 高寬分別對應(yīng)橫豎滾動條的尺寸*/ ::-webkit-scrollbar { width: 0.01rem; opacity: 0; display: none; } /*定義滾動條軌道 內(nèi)陰影+圓角*/ ::-webkit-scrollbar-track { background-color: #fff; opacity: 0; } /*定義滑塊 內(nèi)陰影+圓角*/ ::-webkit-scrollbar-thumb { width: 0.01rem; border-radius: 0.01rem; opacity: 0; }
這樣,一個導(dǎo)航條就實(shí)現(xiàn)了,可以在結(jié)合公司的業(yè)務(wù)修改一下導(dǎo)航條的樣式就可以啦!
以上是“Vue如何實(shí)現(xiàn)tab導(dǎo)航欄并支持左右滑動功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。