您好,登錄后才能下訂單哦!
這篇文章主要介紹“vue router怎么模仿天貓底部導(dǎo)航欄功能”的相關(guān)知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強(qiáng),希望這篇“vue router怎么模仿天貓底部導(dǎo)航欄功能”文章能幫助大家解決問題。
首先把天貓的導(dǎo)航貼出來,里面包括精選、品牌、會員、購物車、我五個導(dǎo)航及對應(yīng)的圖標(biāo)。
分析:
1、圖標(biāo)的獲取
進(jìn)入阿里巴巴矢量圖標(biāo)庫,網(wǎng)址 http://www.iconfont.cn。
點(diǎn)擊官方圖標(biāo)庫,選擇天貓圖標(biāo)庫,選中放入購物車。
點(diǎn)擊添加至項目,點(diǎn)擊創(chuàng)建新項目按鈕,創(chuàng)建tianmao項目,點(diǎn)擊確定。
此時會有查看在線鏈接和下載至本地兩種方式,我選擇第一種,因為后期如果要添加小圖標(biāo)的話,只需要重新生成在線鏈接,然后更新link即可
復(fù)制鏈接到index.html的link標(biāo)簽內(nèi),具體為
<link rel="stylesheet" href="http://at.alicdn.com/t/font_443540_nvmeyfe7k3rcc8fr.css" rel="external nofollow" >
引入圖標(biāo),使用<i class="icon iconfont icon-wo"></i>
區(qū)別在第三個class來引入對應(yīng)圖標(biāo)
此時所需圖標(biāo)處理完畢
2、創(chuàng)建精選、品牌、會員、購物車、我及路由導(dǎo)航組件Home.vue、Brand.vue、Member.vue、Cart.vue、Me.vue、Tabs.vue
使用的樣式時less,如果在.vue文件中寫樣式,style必須寫成<style type="text/less"></style>,否則會報錯
Tabs.vue
<template> <div class="tabs"> <!--命名路由--> <ul> <!--this inspection reports XML/HTML tags with missing mandatory attrbutes ,you can specify attrbute name that should not be reported--> <!--home被點(diǎn)擊后,一直處于激活狀態(tài),因此需要使用精確匹配模式,在router-link中添加exact屬性--> <router-link :to="{name:'Home'}" tag="li" exact> <div> <i class="icon iconfont icon-31shouye"></i> </div> <div>精選</div> </router-link> <router-link :to="{name:'Brand'}" tag="li"> <div> <i class="icon iconfont icon-zhubaoshipin"></i> </div> <div>品牌</div> </router-link> <router-link :to="{name:'Member'}" tag="li"> <div> <i class="icon iconfont icon-huiyuanqia"></i> </div> <div>會員</div> </router-link> <router-link :to="{name:'Cart'}" tag="li"> <div> <i class="icon iconfont icon-gouwucheman"></i> </div> <div>購物車</div> </router-link> <router-link :to="{name:'Me',params:{user:'xu'}}" tag="li"> <div> <i class="icon iconfont icon-wo"></i> </div> <div>我</div> </router-link> </ul> </div> </template> <script type="text/ecmascript-6"> export default {} </script> <style lang="less" type="text/less"> .tabs { position: fixed; bottom: 0; left: 0; background-color: #fff; box-shadow: 0 2px 4px #000; width: 100%; & > ul, & > ul > li { margin: 0; padding: 0; } ul { display: table; width: 100%; & > li { text-align: center; font-size: 16px; display: table-cell; padding: 8px 12px; cursor: pointer; &.router-link-active{ color: #D0021B; } & > div { font-size: 14px; & > i { font-size: 30px; } } } } } </style>
我使用的是命名路由,這樣我們就可以當(dāng)路由組件變化時,直接修改router/index.js文件即可。
3、創(chuàng)建路由
router/index.js
import Vue from 'vue' import Router from 'vue-router' import Home from '@/Home' import Brand from '@/Brand' import Member from '@/Member' import Cart from '@/Cart' import Me from '@/Me' Vue.use(Router) export default new Router({ //mode: 'history', //base: __dirname, //linkActiveClass: 'active', // 更改激活狀態(tài)的Class值 routes: [ { path: '/', name: 'Home', component: Home }, { path: '/brand', name: 'Brand', component: Brand }, { path: '/member', name: 'Member', component: Member }, { path: '/cart', name: 'Cart', component: Cart }, { path: '/me', name: 'Me', component: Me } ] })
4、App.vue引入組件Tabs.vue,并添加<router-view>渲染路徑匹配到的視圖組件
<template> <div id="app"> <Tabs></Tabs> <div class="content"> <router-view></router-view> </div> </div> </template> <script> import Tabs from "./Tabs.vue" export default { name: 'app', data(){ return {} }, components: {Tabs} } </script> <style> *{ padding:0; margin:0; } #app { font-family: 'Avenir', Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } </style>
5、導(dǎo)航狀態(tài)樣式
<router-link>對應(yīng)的路由匹配成功后,就會自動設(shè)置class屬性值為router-link-exact-active router-link-active
router-link-exact-active:配置當(dāng)鏈接被精確匹配的時候應(yīng)該激活的CSS類名。
router-link-active:設(shè)置鏈接激活時使用的 CSS 類名。
如果要修改CSS樣式命名,可通過<router-link>屬性exact-active-class和active-class分別設(shè)置,也可通過路由構(gòu)造函數(shù)選項linkExactActiveClass和linkActiveClass來設(shè)置
點(diǎn)擊品牌時展示如下:Home的Tab仍然設(shè)置了routet-link-activeCSS類名,如果設(shè)置routet-link-active樣式顏色為紅色,精選就會一直保持紅色
此時需要使用”精確匹配模式“,<router-link :to="{name:'Home'}" tag="li" exact> 則使用exact,此時的Home的Tab就不會被設(shè)置routet-link-activeCSS類名了
訪問 http://localhost:8080/#/brand 就不會匹配到http://localhost:8080/#/
關(guān)于“vue router怎么模仿天貓底部導(dǎo)航欄功能”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點(diǎn)。
免責(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)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。