中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

基于Vue實現頁面切換左右滑動效果

發布時間:2020-10-08 18:09:42 來源:腳本之家 閱讀:340 作者:嘉爺 欄目:web開發

基于Vue的頁面切換左右滑動效果,具體內容如下

HTML文本頁面:

<template>
 <div id="app>
  <transition :name="direction" mode="out-in"> <!--動態獲得transition 的name值-->
   <router-view class="app-view" wechat-title></router-view>
  </transition>
 </div>
</template>


JS定義代碼:定義在全局js文件里面

router.beforeEach((to, from, next) => {
  const list = ['home', 'group', 'user']  // 將需要切換效果的路由名稱組成一個數組
  const toName = to.name  // 即將進入的路由名字
  const fromName = from.name  // 即將離開的路由名字
  const toIndex = list.indexOf(toName)  // 進入下標
  const fromIndex = list.indexOf(fromName)  // 離開下標
  let direction = ''

  if (toIndex > -1 && fromIndex > -1) {  // 如果下標都存在
   if (toIndex < fromIndex) {     // 如果進入的下標小于離開的下標,那么是左滑
    direction = 'left'
   } else {
    direction = 'right'     // 如果進入的下標大于離開的下標,那么是右滑
   }
  }

  store.state.viewDirection = direction //這里使用vuex進行賦值

  return next()
 })

在App.vue文件中,進行計算屬性:

computed: {

   direction () {
    const viewDir = this.$store.state.viewDirection
    let tranName = ''

    if (viewDir === 'left') {
     tranName = 'view-out'
    } else if (viewDir === 'right') {
     tranName = 'view-in'
    } else {
     tranName = 'fade'
    }

    return tranName
   },
  },

css3進行動畫效果定義:使用sass

待定義引入樣式文件:

// Variables
$AnimateHook: "animated";
$AnimateDuration: 0.8s;

// Mixins

// Base Style
.#{$AnimateHook} {
 -webkit-animation-duration: $AnimateDuration;
 animation-duration: $AnimateDuration;
 -webkit-animation-fill-mode: both;
 animation-fill-mode: both;

 // Modifier for infinite repetition
 &.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
 }

}

// Slide
@-webkit-keyframes slideInLeft {
 from {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  visibility: visible;
 }

 to {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
 }

}

@keyframes slideInLeft {
 from {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  visibility: visible;
 }

 to {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
 }

}

.slideInLeft {
 -webkit-animation-name: slideInLeft;
 animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
 from {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  visibility: visible;
 }

 to {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
 }

}

@keyframes slideInRight {
 from {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  visibility: visible;
 }

 to {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
 }

}

.slideInRight {
 -webkit-animation-name: slideInRight;
 animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
 from {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
 }

 to {
  visibility: hidden;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
 }

}

@keyframes slideOutLeft {
 from {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
 }

 to {
  visibility: hidden;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
 }

}

.slideOutLeft {
 -webkit-animation-name: slideOutLeft;
 animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
 from {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
 }

 to {
  visibility: hidden;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
 }

}

@keyframes slideOutRight {
 from {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
 }

 to {
  visibility: hidden;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
 }

}

.slideOutRight {
 -webkit-animation-name: slideOutRight;
 animation-name: slideOutRight;
}

@-webkit-keyframes inRight {
 0% {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0)
 }

 to {
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
 }

}

@keyframes inRight {
 0% {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0)
 }

 to {
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
 }

}

@-webkit-keyframes outLeft {
 0% {
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
 }

 to {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0)
 }

}

@keyframes outLeft {
 0% {
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
 }

 to {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0)
 }

}

定義進入與離開的動畫過渡:

.fade-enter-active,
.fade-leave-active {
 transition: all .2s ease;
}

.fade-enter,
.fade-leave-active {
 opacity: 0;
}

.view-in-enter-active,
.view-out-leave-active {
 position: absolute;
 top: 0;
 width: 100%;
 padding-top: px2rem($titbarHeight);
 -webkit-animation-duration: .3s;
 animation-duration: .3s;
 -webkit-animation-fill-mode: both;
 animation-fill-mode: both;
 -webkit-backface-visibility: hidden;
 backface-visibility: hidden;
}

.view-in-enter-active {
 -webkit-animation-name: inRight;
 animation-name: inRight;
}

.view-out-leave-active {
 -webkit-animation-name: outLeft;
 animation-name: outLeft;
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大足县| 阿荣旗| 丹凤县| 阿勒泰市| 齐齐哈尔市| 苏尼特左旗| 潜山县| 图片| 申扎县| 黔江区| 枣庄市| 汉沽区| 上思县| 台南市| 博罗县| 铁岭市| 泸溪县| 乌什县| 十堰市| 梓潼县| 磴口县| 西丰县| 南城县| 衡南县| 陆河县| 璧山县| 寻乌县| 丹阳市| 抚松县| 镇原县| 龙山县| 五河县| 旅游| 县级市| 犍为县| 巴彦淖尔市| 云和县| 时尚| 澄城县| 许昌县| 健康|