time-line

another generic timeline module

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
time-line
1.0.110 years ago10 years agoMinified + gzip package size for time-line in KB

Readme

timeline
yet another generic timeline node module.

usage

var timeline = require('time-line');

// create new timeline with a length
// of 10 secs
var tl = timeline(10000);

// start playback
tl.play();

// receive position updates
tl.on('position', function(pos) {
  console.log('current position', pos.position);
});

// get the current position
console.log('current position', tl.getPosition());

// jump to a specific position
tl.jumpTo(5000);

// catch ended event
tl.on('ended', function() {
  console.log('playback ended');
});

Installation

npm install time-line

License

Copyright (c) 2014 Simon Kusterer Licensed under the MIT license.