if($('#instafeed').is(':visible')){ $(window).on('load', function(){ $.instagramFeed({ 'username': 'daddymillbrasil', 'container': "#instafeed", 'display_profile': false, 'display_biography': false, 'display_gallery': true, 'callback': null, 'styling': true, 'items': 12, 'items_per_row': 5, 'margin': 1, 'lazy_load': true, 'on_error': console.error }); setTimeout(function(){ $('.instagram_gallery .instagram-image img').ready(function(){ $('.instagram_gallery').slick({ slidesToShow: 5, slidesToScroll: 1, arrows:false, infinite:true, responsive: [ { breakpoint:2000, settings:{ slidesToShow: 5, autoplay: true } }, { breakpoint:1250, settings:{ slidesToShow: 5, autoplay: true } }, { breakpoint:1024, settings:{ slidesToShow: 4, autoplay: true } }, { breakpoint:850, settings:{ slidesToShow: 3, autoplay: true }, }, { breakpoint:650, settings:{ slidesToShow: 2, autoplay: true }, } ] }); }); },2000); }); }