0.0.2 • Published 8 years ago

animoto v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
8 years ago

Animoto

Javascript utility for animations

animoto demo

Install

$ npm install --save animoto

Usage

var Animoto = require('animoto');

var $square = document.querySelector('#square');

Animoto({
  start: $square.offsetLeft,
  stop: $square.offsetLeft + 300,
  duration: 2000 
})
.on('tick', function(val) {
  var $square = document.querySelector('#square')
  $square.style.left = val + "px";
})

.on('done', function(){
  console.log('done')
})
.begin()
0.0.2

8 years ago

0.0.1

8 years ago