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