• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

vue实现跳转接口push 转场动画示例

vue 搞代码 4年前 (2022-01-08) 25次浏览 已收录 0个评论

今天小编就为大家分享一篇vue实现跳转接口push 转场动画示例,具有很好的参考价值,希本文来源gaodai$ma#com搞$代*码*网望对大家有所帮助。一起跟随小编过来看看吧

1.index.js 配置子路由children。

 import Vue from 'vue' import Router from 'vue-router' import SingerDetail from 'components/singer-detail/singer-detail'

Vue.use(Router)

 export default new Router({ routes: [ { path: '/', redirect: '/recommend' }, { path: '/singer', component: Singer, //配置子路由,加一个参数children children: [ { //:id 以id为变量,传递一个参数,跳转到不同子路由 path: ':id', component: SingerDetail } ] }, { path: '/search', component: Search, children: [ { path: ':id', component: SingerDetail } ] } ] })

1.Singer

  <div class='singer'>  //需要用routeview承载子路由 </div>
 
  .singer{ } 

2.listview (singer子组件)

  <div class='listview'> <ul> <li></li></ul></div>
 
  .listview{ } 

3.singerDetail

   <div class='singer-detail'></div>
 
  .singer-detail{ position:fixed z-index:100 top:0 left:0 right:0 bottom:0 background:lightgray } .slider-enter-active,.slider-leave-active{ transition: all 0.3s } .slider-enter,.slider-leave-to{ transform: translate3d(100%,0,0) } 

4.push转场动画

  <div class="chatdiv"> <div class="back"></div><div class="cont">免费咨询专业医生在线解答</div></div>
  .slide-enter-active,.slide-leave-active{ transition: all 0.3s; } .slide-enter,.slide-leave-to{ transform: translate3d(100%,0,0); } 

以上就是vue实现跳转接口push 转场动画示例的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:vue实现跳转接口push 转场动画示例

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址