6

看到一个很棒的时间轴工具,分享一下:
github地址 https://github.com/sbstjn/timesheet.js
主页地址:http://sbstjn.github.io/timesheet.js/

项目介绍

通过html5和CSS3,把数据和事件进行可视化处理,用JavaScript创建事件轴,用CSS美化样式,还有适合移动端的方法。

作者最近一直在更新,github上有超过4500个star、300多fork,还是比较值得信赖的。

效果图

clipboard.png

使用

只需要引入 Timesheet.js 和配置你的数据,不依赖别的库,不需要 jQuery 、Angular.JS。只是用几行JavaScript去创建HTML5布局的界面、用CSS自定义界面样式。

<script src="timesheet.js" type="text/javascript" />
<link href="timesheet.js"  type="text/css">

创建简单的时间轴只需要一个保存事件的JS数组:

new Timesheet('timesheet-default', 2002, 2013, [
  ['2002', '09/2002', 'A freaking awesome time', 'lorem'],
  ['06/2002', '09/2003', 'Some great memories', 'ipsum'],
  ['2003', 'Had very bad luck'],
  ['10/2003', '2006', 'At least had fun', 'dolor'],
  ['02/2005', '05/2006', 'Enjoyed those times as well', 'ipsum'],
  ['07/2005', '09/2005', 'Bad luck again', 'default'],
  ['10/2005', '2008', 'For a long time nothing happened', 'dolor'],
  ['01/2008', '05/2009', 'LOST Season #4', 'lorem'],
  ['01/2009', '05/2009', 'LOST Season #4', 'lorem'],
  ['02/2010', '05/2010', 'LOST Season #5', 'lorem'],
  ['09/2008', '06/2010', 'FRINGE #1 & #2', 'ipsum']
]);

使用Bower安装

$ > bower install https://github.com/sbstjn/timesheet.js.git

·


HelloCode
1.2k 声望37 粉丝

向巨人们学习