| Current Path : /home/ereika83/www/wp-content/plugins/bbpowerpack/modules/pp-post-timeline/js/ |
| Current File : /home/ereika83/www/wp-content/plugins/bbpowerpack/modules/pp-post-timeline/js/frontend.js |
/**
* This file should contain frontend logic for
* all module instances.
*/
(function($) {
$(function(){
if($('html').hasClass('fl-builder-edit') === false) {
var $post_timeline_block = $('.pp-post-timeline-item');
//hide timeline blocks which are outside the viewport
$post_timeline_block.each(function(){
$(this).find('.pp-post-timeline-content').addClass('pp-is-hidden');
$(this).find('.pp-separator-arrow').addClass('pp-is-hidden');
if($(this).offset().top <= $(window).scrollTop()+$(window).height()) {
$(this).find('.pp-post-timeline-content').removeClass('pp-is-hidden').addClass('pp-fade');
$(this).find('.pp-separator-arrow').removeClass('pp-is-hidden').addClass('pp-fade');
}
});
//on scolling, show/animate timeline blocks when enter the viewport
$(window).on('scroll', function(){
$post_timeline_block.each(function(){
if( $(this).offset().top <= $(window).scrollTop()+$(window).height() && $(this).find('.pp-post-timeline-content').hasClass('pp-is-hidden') ) {
$(this).find('.pp-post-timeline-content').removeClass('pp-is-hidden').addClass('pp-fade');
$(this).find('.pp-separator-arrow').removeClass('pp-is-hidden').addClass('pp-fade');
}
});
});
}
});
})(jQuery);