0.0.5 • Published 5 years ago

flickable v0.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

flickable

enable flick library for js

HOW TO USE

var flick = new Flickable(elem, direction) // direction -> 'vertical' or 'horizon'

flick.on('start', function(e) {
});
flick.on('move', function(e) {
  // e.x, e.y   // Current position
  // e.sx, e.sy // Start position
  // e.dx, e.dy // Diffrence of start position
  // e.prevX, e.prevY // Previous frame position
  // e.movementX, e.movementY  // diffrence of Previous frame position
});
flick.on('end', function(e) {});
0.0.5

5 years ago

0.0.4

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago