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

移动端滑动切换组件封装 vue-swiper-router实例详解

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

这篇文章主要介绍了移动端滑动切换组件封装 vue-swiper-router实例详解,需要的朋友可以参考下

具体

本文来源gao!daima.com搞$代!码网

代码如下所述:

 <strong>组件部分</strong> <div class="main"> <div class="page-tab"> <div> {{item.name}} </div></div>  </div> * { margin: 0; padding: 0; } body { height: 100%; width: 100%; background-color: #fbf9fe; } a { color: #333; text-decoration: none; } .page { display: flex; justify-content: center; align-items: center; } .page-tab { display: flex; justify-content: center; } .tab-item { text-align: center; align-items: center; height: 44px; line-height: 44px; flex: 1; height: 100%; background-color: #fff; } .tab-item_active { border-bottom: 3px solid #f90; } .tab-item_active a { color: #f90; } .slideforward-enter-active, .slideforward-leave-active { position: absolute; transition: all .5s; transform: translate3d(0px, 0px, 0px); } .slideforward-enter, .slideforward-leave-to { position: absolute; transform: translate3d(200px, 0px, 0px); } .slideback-enter-active, .slideback-leave-active { position: absolute; transition: all .5s; transform: translate3d(0px, 0px, 0px); } .slideback-enter, .slideback-leave-to { position: absolute; transform: translate3d(-200px, 0px, 0px); } <strong>router部分</strong> import Vue from 'vue'; import Router from 'vue-router'; import Page1 from '@/pages/page1/index'; import Page2 from '@/pages/page2/index'; import Page3 from '@/pages/page3/index'; import Page4 from '@/pages/page4/index'; Vue.use(Router) export default new Router({ routes: [ { path: '/', name: 'index', component: Page1 }, { path: '/page2', name: 'Page2', component: Page2 }, { path: '/page3', name: 'Page3', component: Page3 }, { path: '/page4', name: 'Page4', component: Page4 } ] }); <strong>调用组件部分</strong> <div id="app">  </div> 

完整代码 –> 代码地址    移动端滑动切换   

 总结

以上所述是小编给大家介绍的移动端滑动切换组件封装 vue-swiper-router实例详解,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!

以上就是移动端滑动切换组件封装 vue-swiper-router实例详解的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:移动端滑动切换组件封装 vue-swiper-router实例详解
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

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

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

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