Skip to content

Latest commit

 

History

History
33 lines (29 loc) · 906 Bytes

File metadata and controls

33 lines (29 loc) · 906 Bytes

Odoo: SVG Odometer Effect Library

Crazy SVG odometer effect library. Library uses functional approach and ES7 Function Bind Syntax. Internals strongly inspired by d3.js library.

Demo

Examples

The API is really simple and straigthforward:

odoo.default({ el: '.js-odoo', value: '£42,000,000' });

You can use it with other options:

odoo.default({
  el: '.js-odoo',
  value: '£42,000,000',
  lineHeight: 1.35,
  letterSpacing: 1,
  animationDelay: 100,
  letterAnimationDelay: 100
});

If you want to cancel the ongoing animation just call returned function:

const cancel = odoo.default({ el: '.js-odoo', value: '£42,000,000' });
cancel();

That's it?

Yea! That's it. Other options like font-family and font-size are taken from computed styles so you can just style it like the other layers.