var gallery; $(function(){ $('.modal').modaal({ type: 'image', background:'#ffffff', overlay_opacity:.33, }); gallery = $('.gallerywrap').html(); $('.smenu li').on('click',function(){ $('.smenu li').removeClass('active'); $(this).addClass('active'); _cat = $(this).attr('data-filter'); $('.gallerywrap').stop().addClass('hidden').delay(500).queue(function(){ $('.img').remove(); $('.gallerywrap').append(gallery); if(_cat!=='all'){ $('.img:not(.'+_cat+')').remove(); $('.modal').modaal({ type: 'image', background:'#ffffff', overlay_opacity:.33, }); } $('.gallerywrap').stop().removeClass('hidden'); }); }); }); $(window).on('load',function(){ }); $(window).on('resize',function () { }); $(window).on('scroll',function () { }); $(window).on('orientationchange', function(){ });