Vue仿微信app頁面跳轉動畫

獨立開發者在開發移動端產品時,爲了更高效,一般會使用Web技術來開發移動端項目,能夠同時適配Android、iOS、H5,稍加改動還可適配微信小程序。html

在使用Vue.js開發移動端頁面的時候,默認的組件轉場效果過於生硬,根本就沒有動畫效果。因而我用Vue提供的組件過渡功能,寫了個仿微信app頁面跳轉的動畫,以提升用戶體驗。vue

廢話很少說,直接上圖git

在600元驍龍632安卓測試機效果流暢。程序員

代碼量不多,已上傳至GitHub github.com/YellowDoing…github

核心代碼小程序

<transition :name="this.$store.routeAction">
     <router-view/>
</transition>
複製代碼

CSS微信小程序

.push-enter-active,.push-leave-active
, .pop-enter-active,.pop-leave-active{
  transition: all 0.4s;
}

.push-leave-to{
transform: translate(-20%,0);
}

.push-enter {
  transform: translate(100%, 0);
}
.push-enter-active {
  z-index: 10;
}
.push-leave-active {
  z-index: 0;
}
.pop-leave-active {
  transform: translate(100%, 0);
  z-index: 11;
}

.pop-enter{
  transform: translate(-20%,0);
}
複製代碼

Vue.js組件過渡相關文檔 cn.vuejs.org/v2/guide/tr…bash

掃碼關注微信公衆號《IT獨立開發者》,幫助程序員拓展產品、運營、設計等思惟能力,開發獨立產品,致力成爲自由職業者,實現財富自由。 微信

相關文章
相關標籤/搜索