日期:2011/10/09       原文:GBin1.com

很多情况下,我们需要以时间序列方式列出相关的事件或者信息,这往往会用到时间轴特效,例如,GBin1网站的关于页面我们自己实现了一个简单的时间轴特效:http://www.gbin1.com/portfolio/about/

为了方便大家快速实现时间轴特效,今天GBin1这里给大家介绍一款非常酷的时间轴特效插件Timelinr,希望大家能喜欢。

GBin1推荐:使用时间轴插件Timelinr创建超酷jQuery时间轴(Time line)

Timelinr插件首页: http://www.csslab.cl/2011/08/18/jquery-timelinr/

目前Timelinr版本为0.9.4,支持垂直及其水平方向的时间轴显示,并且支持透明自动播放。

 

在线演示(水平) 

 

在线演示(垂直)

 

在线演示(自动)

 

代码介绍

引入jQuery类库和插件类库,如下:


<script src="js/jquery-1.6.1.min.js" type="text/javascript"></script>
<script src="js/jquery.timelinr-0.9.js" type="text/javascript"></script>

初始化缺省参数,如下:


<script type="text/javascript">
   $(function(){
      $().timelinr();
   });
</script>

或者定制参数内容,如下:


<script type="text/javascript"> 
   $(function(){
      $().timelinr({
         orientation: 'horizontal',
         // value: horizontal | vertical, default to horizontal
         containerDiv: '#timeline',
         // value: any HTML tag or #id, default to #timeline
         datesDiv: '#dates',
         // value: any HTML tag or #id, default to #dates
         datesSelectedClass: 'selected',
         // value: any class, default to selected
         datesSpeed: 500,
         // value: integer between 100 and 1000 (recommended), default to 500 (normal)
         issuesDiv : '#issues',
         // value: any HTML tag or #id, default to #issues
         issuesSelectedClass: 'selected',
         // value: any class, default to selected
         issuesSpeed: 200,
         // value: integer between 100 and 1000 (recommended), default to 200 (fast)
         issuesTransparency: 0.2,
         // value: integer between 0 and 1 (recommended), default to 0.2
         issuesTransparencySpeed: 500,
         // value: integer between 100 and 1000 (recommended), default to 500 (normal)
         prevButton: '#prev',
         // value: any HTML tag or #id, default to #prev
         nextButton: '#next',
         // value: any HTML tag or #id, default to #next
         arrowKeys: 'false',
         // value: true/false, default to false
         startAt: 1,
         // value: integer, default to 1 (first)
         autoPlay: 'false',
         // value: true | false, default to false
         autoPlayDirection: 'forward',
         // value: forward | backward, default to forward
         autoPlayPause: 2000
         // value: integer (1000 = 1 seg), default to 2000 (2segs)
      });
   });
</script>

HTML代码如下:


<div id="timeline">
   <ul id="dates">
      <li><a href="#">date1</a></li>
      <li><a href="#">date2</a></li>
   </ul>
   <ul id="issues">
      <li id="date1">
         <p>Lorem ipsum.</p>
      </li>
      <li id="date2">
         <p>Lorem ipsum.</p>
      </li>
   </ul>
   <a href="#" id="next">+</a> <!-- optional -->
   <a href="#" id="prev">-</a> <!-- optional -->
</div>

搞定!大家看到使用非常简单。效果非常强大!

原文来自: GBin1推荐:使用时间轴插件Timelinr创建超酷jQuery时间轴(Time line)