您好,登錄后才能下訂單哦!
這篇文章主要介紹Vue如何實現tab導航欄并支持左右滑動功能,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
tab導航欄布局:
<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
導航欄樣式代碼:
.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; }
此時我們可以實現下面的樣式,并且可以左右滑動tab:
需要注意的是,在樣式代碼中需要添加flex-shrink : 0
,這樣才會當tab寬度大于外部容器寬度時不會收縮。
這樣,我們基本的tab導航欄已經實現了,現在我們來實現:點擊“中考加油”時,整個tab向左滑動,顯示出剩下的tab元素。
changeTab(id, event) { // 如果選擇的和當前激活的不同 if (id !== this.activeId) { this.activeId = id; // 計算當前按鈕的位置,看是否需要移動 const spanLeft = event.clientX; // 當前點擊的元素左邊距離 const divBox = document.querySelector(".select-tab").clientWidth / 2; // 點擊的元素一半寬度 const totalWidths = document.body.clientWidth; // 屏幕總寬度 const widths = totalWidths / 2; // 一半的屏幕寬度 const spanRight = totalWidths - spanLeft; // 元素的右邊距離 const scrollBox = document.querySelector(".fixed-nav"); // 獲取最外層的元素 const scrollL = scrollBox.scrollLeft; // 滾動條滾動的距離 // 當元素左邊距離 或者 右邊距離小于100時進行滑動 if (spanRight < 100 || spanLeft < 100) { scrollBox.scrollLeft = scrollL + (spanLeft - widths) + divBox; } } }
通過這個方法可以實現tab的自動滾動了,但是此時還有一個問題是:在滑動的時候會顯示出滾動條,顯然是不太美觀的。
/*定義滾動條高寬及背景 高寬分別對應橫豎滾動條的尺寸*/ ::-webkit-scrollbar { width: 0.01rem; opacity: 0; display: none; } /*定義滾動條軌道 內陰影+圓角*/ ::-webkit-scrollbar-track { background-color: #fff; opacity: 0; } /*定義滑塊 內陰影+圓角*/ ::-webkit-scrollbar-thumb { width: 0.01rem; border-radius: 0.01rem; opacity: 0; }
這樣,一個導航條就實現了,可以在結合公司的業務修改一下導航條的樣式就可以啦!
以上是“Vue如何實現tab導航欄并支持左右滑動功能”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。