mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
16 lines
312 B
JavaScript
16 lines
312 B
JavaScript
|
|
//=include ../../../node_modules/is-in-viewport/lib/isInViewport.js
|
|
|
|
jQuery(function($) {
|
|
|
|
// start wrigely animation when in viewport
|
|
var wrigely = $('#wrigely');
|
|
|
|
if (wrigely.isInViewport() ) {
|
|
wrigely.addClass('is-ready');
|
|
} else {
|
|
wrigely.removeClass('is-ready');
|
|
}
|
|
|
|
});
|