zoukankan      html  css  js  c++  java
  • vue 底部bottomnav

    <template>
      <div id="foot">
        <div class="tabBar">
        <div class="menu"><p class="cont"> <router-link to='/'><img src="./img/tabBar1.png" alt="" class="src" height="47px" ></router-link><span v-bind:class="{active:routerCurrent==1}"> 首页</span> </p></div>
        <div class="menu"><p class="cont"> <router-link to='/SignIn'><img src="./img/tabBar2.png" alt="" class="src" height="47px"></router-link><span v-bind:class="{active:routerCurrent==2}"> 签到</span> </p></div>
        <div class="menu"><p class="cont"> <router-link to='/prize'><img src="./img/tabBar3.png" alt="" class="src" height="47px"></router-link><span v-bind:class="{active:routerCurrent==3}"> 福利</span> </p></div>
        <div class="menu"><p class="cont"> <router-link to='/my'><img src="./img/tabBar4.png" alt="" class="src" height="47px"></router-link><span v-bind:class="{active:routerCurrent==4}"> 我的</span> </p></div>
        </div>
      </div>
    </template>
    <script>
    export default {
      data(){
        return{
          routerCurrent :1 ,
        }
      },
      created () {
        this.getRouter();
      },
      watch: {
        $route() {
          this.getRouter();
        }
      },
       methods: {
         //获取当前处于哪一个路由
        getRouter() {
          if (this.$route.path == "/") {
            this.routerCurrent = 1;
          }
          if (this.$route.path == "/SignIn") {
            this.routerCurrent = 2;
          }
          if (this.$route.path == "/prize") {
            this.routerCurrent = 3;
          }
          if (this.$route.path == "/my") {
            this.routerCurrent = 4;
          }
          console.log(this.$route.path);
        },
      },
      mounted () {
        
      }
    
    }
    </script>
    <style scoped lang="scss">
      #foot{
        height: 1.47rem;
        position: fixed;
         100vw;
        background: #fff;
        bottom: 0;
        .active{
          color: #e4007f;
        }
        .tabBar{
          margin: 0 0.2rem;
          height:100%;
          display: flex;
          text-align:center;
          display:-webkit-flex;
          flex-wrap:nowrap;
          flex-direction:reverse;
          justify-content:space-between;
          .menu{
            a{
              display: block;
              margin: 0.1rem auto -0.25rem;
            }
            span{
              font-size: 16px;
            }
          }
          
        }
      }
     
    </style>
    

      上面的是组件,下面的是调用

    <template>
      <div id="my">
        <div class="head"></div> 
        <div class="pic">
          <div class="cover">
            <i class="el-icon-message"></i>
          </div>
        </div>
          <!-- 底部nav -->
        <foot  :parentMessage="routerPath"></foot>
      </div>
    </template>
    <script>
    import foot from '@/components/foot/foot'
    
    export default {
      data(){
        return{
          routerPath:'' 
        }
      },
      components: {
        foot
      },
      mounted () {
        this.routerPath=this.$route.path
        // console.log(this.$route.path);background: url('../assets/img/my-bg.png') no-repeat;
      }
      
    }
    </script>
    <style scoped lang="scss">
       #my{
         .pic{
           height: 6.53rem;
            position: relative;
           
           background-size:cover;
           .cover{
             100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 999;
            background: rgba(0, 0, 0, 0.5);
    
           }
         }
       }
    </style>
    

      

  • 相关阅读:
    js动态绑定class(当前父级div下的子元素有没有这个class,有的话移除,没有的话添加)
    css 最简单的淡出淡出
    vue中注册全局组件并使用
    vue 安装完less之后报 Module build failed: TypeError: loaderContext.getResolve is not a function
    vue moment时间戳转日期的使用
    vue +element实现点击左侧栏目切换路由
    vue使用模板快速创建vue文件
    vue项目中全局使用vuex并注册全局属性
    npm ERR! A complete log of this run can be found in: npm ERR! D: ode ode_cache\_logs2020-06-13T08_12_35_648Z-debug.log
    cnpm的安装(超级详细版)
  • 原文地址:https://www.cnblogs.com/zhoubingyan/p/8360909.html
Copyright © 2011-2022 走看看