// ISOTOPE FILTER jQuery(document).ready(function($){ if ( $('.iso-box-wrapper').length > 0 ) { var $container = $('.iso-box-wrapper'), $imgs = $('.iso-box img'); $container.imagesLoaded(function () { $container.isotope({ layoutMode: 'fitRows', itemSelector: '.iso-box' }); $imgs.load(function(){ $container.isotope('reLayout'); }) }); //filter items on button click $('.filter-wrapper li a').click(function(){ var $this = $(this), filterValue = $this.attr('data-filter'); $container.isotope({ filter: filterValue, animationOptions: { duration: 750, easing: 'linear', queue: false, } }); // don't proceed if already selected if ( $this.hasClass('selected') ) { return false; } var filter_wrapper = $this.closest('.filter-wrapper'); filter_wrapper.find('.selected').removeClass('selected'); $this.addClass('selected'); return false; }); } }); // PRELOADER JS $(window).load(function(){ $('.preloader').fadeOut(1000); // set duration in brackets }); /* HTML document is loaded. DOM is ready. -------------------------------------------*/ $(function(){ // ------- WOW ANIMATED ------ // wow = new WOW( { mobile: false }); wow.init(); // HIDE MOBILE MENU AFTER CLIKING ON A LINK $('.navbar-collapse a').click(function(){ $(".navbar-collapse").collapse('hide'); }); // NIVO LIGHTBOX $('.iso-box-section a').nivoLightbox({ effect: 'fadeScale', }); // HOME BACKGROUND SLIDESHOW $(function(){ jQuery(document).ready(function() { $('#home').backstretch([ "images/home-bg-slideshow1.jpg", "images/home-bg-slideshow2.jpg", ], {duration: 5000, fade: 3000}); }); }) });