vue2.0 侧滑菜单栏

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_27717857/article/details/79567332

本文参考的是  https://github.com/IFmiss/vue-music 的一个云音乐app项目,觉得侧栏菜单不错就模仿敲了一遍,顺便做下记录加深印象。效果图如下:

1.sideBar.vue

<template>
  <div class="home">
  <!-- 对transition不了接的可以查看vue2.0官方文档的“过渡 & 动画” 链接:https://cn.vuejs.org/v2/guide/transitions.html-->
<transition name="fade" @touchmove.stop.prevent>
  <!-- 这部分功能主要是关闭侧栏菜单,类似一层遮罩的效果 -->
<div class="menu-mask" v-show="isRellyShow" @click="hideSide"></div>
</transition>

  <transition name="slide-fade">
  <!-- 这里才是侧栏代码部分 -->
  <div class="side-content" v-show="isRellyShow">
  <!-- css transition动画 加深理解 -->
     <a  class="change">
        <img  src="http://p4.qhimg.com/t0160e6a92121691e22.png" alt="" />
    </a>

</div>    
  </transition>
  </div>
</template>

<script>
export default {
  components:{},
  data () {
    return {
   
      }
  },
  methods: {
  hideSide:function(){
  this.$store.dispatch('hideSideBar');
  }
  },
  computed:{
  isRellyShow(){
  return this.$store.getters.isShowMethod;
  }
  },
  mounted:function(){
 
  }
}
</script>

<style scoped>
.menu-mask{
position:fixed;
top:0;
left:0;
bottom:0;
right:0;
opacity: 1;
z-index:10;
background:rgba(0,0,0,0.5);
}
.side-content{
z-index: 11;position:fixed;width: 286px;
height: 100%;
background: #e5e5e5;
top: 0;
left: 0;
bottom: 0;
-webkit-overflow-scrolling:touch;
}
.fade-enter-to, .fade-leave-to{
transition: opacity 0.3s
}
.fade-enter, .fade-leave-to{
opacity: 0
}


.slide-fade-enter-to, .slide-fade-leave-to{
transition: transform 0.3s;
transform:translate(0px,0px);
}
.slide-fade-enter, .slide-fade-leave-to{
  opacity: 0;
  -webkit-transform:translate(-286px,0px);
  transform:translate(-286px,0px);
  -webkit-transition:opacity 0.3s ease-in-out 0.3s,-webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out 0.3s,transform 0.3s ease-in-out;
}


.change{
  display:block;
  width:284px;
  height:200px;
  background:url(http://p3.qhimg.com/t0134c65e59012a1257.png) no-repeat center;
  background-size:cover;
  border:1px solid #fff;
  overflow: hidden;
}
.change img{
  display:block;
  width:220px;
  height:180px;
  opacity:0;
  -webkit-transform:translate(284px,200px);
  transform:translate(284px,200px);
  -webkit-transition:opacity 0.5s ease-in-out 0.5s,-webkit-transform 1s ease-in-out;
  transition: opacity 0.5s ease-in-out 0.5s,transform 1s ease-in-out;
}
.change:hover img{
  -webkit-transform:translate(0px,0px);
  transform:translate(0px,0px);
  opacity: 1;
}

</style>


2.home.vue

<template>
  <div class="home">
  <x-header>
      <span>首页</span>
      <x-icon @click="showSide" slot="overwrite-left" type="navicon" size="35" style="fill:#fff;position:relative;top:-8px;left:-3px;"></x-icon>
    </x-header>
    <side-bar></side-bar>
  </div>
</template>


<script>
import { XHeader } from 'vux'
import SideBar from './../../components/sideBar.vue'
export default {
  components:{XHeader,'side-bar':SideBar},
  data () {
    return {
   
      }
  },
  methods: {
    showSide:function(){
      this.$store.dispatch('showSideBar')
    }
  },
  mounted:function(){
 
  }
}
</script>


<style scoped lang="less">


</style>

3. Vuex状态管理store.js

import Vue from 'vue';
import Vuex from 'vuex';
Vue.use(Vuex);



const state = {
    isShow:false
}


const getters = {
    isShowMethod(state){
    return state.isShow;
    }
}


const actions = {
    showSideBar({commit}){
    commit('showBar')
    },
    hideSideBar({commit}){
    commit('hideBar')
    }
}


const mutations = {
showBar(state){
state.isShow=true;
},
hideBar(state){
state.isShow=false;
}
}
export default new Vuex.Store({
    state,
    getters,
    actions,
    mutations
}); 

猜你喜欢

转载自blog.csdn.net/qq_27717857/article/details/79567332