Gallery

$(document).ready(function () {
$.ajax({
url: 'https://northsouth.ltd/fth/img/gallery/gallery.php',
complete: function(xhr, status) {
var data = xhr.responseJSON;
data.forEach(function(filename) {
$('.galleryWrapper').append('<div class="galleryItem"><a href="//www.northsouth.ltd/fth/img/gallery/' + filename + '" class="image-link"><img class="galleryImage" src="//www.northsouth.ltd/fth/img/gallery/' + filename + '"></a></div>');
});
$('.image-link').magnificPopup({type:'image'});

ScrollReveal().reveal('.galleryItem:nth-child(4n+1)', { delay: 800, distance: '20px' });
ScrollReveal().reveal('.galleryItem:nth-child(4n+2)', { delay: 1000, distance: '30px' });
ScrollReveal().reveal('.galleryItem:nth-child(4n+3)', { delay: 1200, distance: '40px' });
ScrollReveal().reveal('.galleryItem:nth-child(4n+4)', { delay: 1400, distance: '50px' });
ScrollReveal().reveal('.galleryItem:nth-child(4n+5)', { delay: 1600, distance: '60px' });
ScrollReveal().reveal('.galleryItem:nth-child(4n+6)', { delay: 1800, distance: '70px' });
ScrollReveal().reveal('.galleryItem:nth-child(4n+7)', { delay: 2000, distance: '80px' });
ScrollReveal().reveal('.galleryItem:nth-child(4n+8)', { delay: 2200, distance: '90px' });

},
dataType: 'jsonp',
crossDomain: true
});
});