Travelling Me

jQuery plugin for create infinite horizontal travellings

Travelling Me's code

Demo page: move the mouse pointer over the example divs.

Use

$('#div-id').travelling();

Travelling 01

Travelling with vertical movement

$( '#travelling-1' ).travelling();

Travelling 02

Travelling of multiple elements

$( '#travelling-2' ).travelling({
  inactive_zone: 10,  // pixels arround div center where the velocity = 0
  max_velocity: 100,  // max velocity
  fps: 20             // frames per second
});

Travelling 03

Traveling of a simple list

$( '#travelling-3' ).travelling({
  max_velocity: 10  // max velocity
});
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9