JSFiddle - React, Tailwind, and code Playground
by der_robert
HTML
<script src="http://icambron.github.com/timestack/files/moment.min.js"></script>
<script src="http://icambron.github.com/timestack/files/timestack.min.js"></script>
<link rel="stylesheet" href="http://icambron.github.com/timestack/files/timestack.css">
<div id="timeline"></div>
JavaScript
$('#timeline').timestack({
span: 'hour',
data: [
{
title: 'Start',
start: '2015-01-01T12:00',
end: '2015-01-01T13:00',
color: 'rgb(149, 203, 255)'
},
{
title: 'Ende',
start: '2015-01-31T12:00',
end: '2015-01-31T13:00',
color: 'rgb(149, 203, 255)'
}
]
});