Vue Transition实现类原生组件跳转过渡动画的示例

前端之家收集整理的这篇文章主要介绍了Vue Transition实现类原生组件跳转过渡动画的示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近学习了Vue Transition的用法,感觉这个地方知识点挺多的,而且很重要,所以,今天添加一点小笔记

官方文档:

演示地址: (请在移动端查看,PC端查看请打开移动端调试模式)

前言

看了挺多Vue的UI框架都不带过渡动画,今天心血来潮,就把自己平时用的动效抽离出来。可直接通过脚手架init模版配合其他UI框架使用,不需要另外进行配置。

原理

模版中使用了Vue提供的封装组件 transition,配合CSS类名在 enter/leave 的六种不同的状态过渡中切换。

对于这些在 enter/leave 过渡中切换的类名,v- 是这些类名的前缀。使用 可以重置前缀,比如 v-enter 替换为 my-transition-enter

重写跳转函数

{ let el = document.getElementById('app') if (el) el.setAttribute('transition-direction',direction) }

router['_push'] = router['push']

// 重写路由跳转方法,设置跳转类型后跳转
router.forward = router['push'] = (target) => {
nextDirection('forward')
setTimeout(() => { router'_push' })
}

// 重写路由返回方法,设置跳转类型后跳转上一页
router.back = (target) => {
nextDirection('back')
if (target) {
setTimeout(() => { router'_push' })
}
history.go(-1)
}

How to use

cd project

cd my-transition-app

install dependencies

npm install

serve with hot reload at localhost:8080

npm run dev

build for production with minification

npm run build

仓库地址:nofollow" target="_blank" href="https://github.com/CoderLQChou/vue-transition-template">https://github.com/CoderLQChou/vue-transition-template

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

原文链接:https://www.f2er.com/vue/36996.html

猜你在找的Vue相关文章