当前位置:   article > 正文

一个基于vue的时间轴轮播图插件_vue 时间线自动播放

vue 时间线自动播放

简单Demo效果: 

引入: 

  1. <script src="js/jquery.min.js"></script> <!-- >=1.11.2 -->
  2. <script src="js/timeline.min.js"></script>
  3. <link rel="stylesheet" href="css/timeline.css">

Html: 

  1. <template>
  2. <div class="timeline-container timeline-theme-1">
  3. <div class="timeline js-timeline">
  4. <div data-time="2017" class="theme-2" >
  5. your content or markup
  6. </div>
  7. <div data-time="2016" class="theme-6">
  8. your content or markup
  9. </div>
  10. <div data-time="2015" class="theme-4">
  11. your content or markup
  12. </div>
  13. <div data-time="2014" class="theme-5">
  14. your content or markup
  15. </div>
  16. <div data-time="2013" class="theme-3">
  17. your content or markup
  18. </div>
  19. </div>
  20. </div>
  21. </template>
  22. <style>
  23. .timeline-theme-1 {
  24. width: 600px;
  25. margin: 70px auto auto;
  26. }
  27. .timeline-theme-1 .timeline-list {
  28. width: 600px !important;
  29. height: 250px;
  30. }
  31. .js-timeline .box-item {
  32. float: left;
  33. width: 600px;
  34. height: 250px;
  35. color: #fff;
  36. text-align: center; }
  37. .theme-1 {
  38. background: #4A2AB2; }
  39. .theme-2 {
  40. background: #7dffc3; }
  41. .theme-3 {
  42. background: #23A5E9; }
  43. .theme-4 {
  44. background: #93C763; }
  45. .theme-5 {
  46. background: #949923; }
  47. .theme-6 {
  48. background: #990055; }
  49. </style>

 JS:

  1. $('.js-timeline').Timeline({
  2. autoplay: true,
  3. mode: 'vertical',
  4. itemClass: 'box-item'
  5. })

github地址:https://github.com/ilkeryilmaz/timelinejs 

附:基于jquery 横向/纵向 时间轴插件推荐 

其他效果(可能会有闪屏Bug)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/130223
推荐阅读
相关标签
  

闽ICP备14008679号