Trying to build simple time travel for data displayed via d3 (with Ramda for data generation); very much still a work in progres...
xxxxxxxxxx
<head>
<meta charset="utf-8">
<link type="text/css" rel="stylesheet" href="style.css"/>
</head>
<body>
<input id="time-slider" type="range" min="0" max="1" step="0.01" value="1"></input>
<div id="table-target">
<table>
<thead>
<tr>
<th>Series</th>
<th>Value</th>
<th>Time</th>
</tr>
</thead>
<tbody id="data-table"></tbody>
</table>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ramda/0.18.0/ramda.min.js"></script>
<script src="src.js"></script>
</body>
</html>
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js
https://cdnjs.cloudflare.com/ajax/libs/ramda/0.18.0/ramda.min.js