mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
20 lines
367 B
JavaScript
20 lines
367 B
JavaScript
|
|
//=include bigchain/smoothscroll.js
|
|
//=include ../../../node_modules/vivus/dist/vivus.js
|
|
|
|
|
|
jQuery(function($) {
|
|
|
|
// graph animation
|
|
var iconOptions = {
|
|
type: 'delayed',
|
|
start: 'inViewport',
|
|
duration: 200,
|
|
animTimingFunction: Vivus.EASE_OUT,
|
|
selfDestroy: true
|
|
};
|
|
|
|
new Vivus('bigchain-graph', iconOptions);
|
|
|
|
});
|