$(document).ready(function () { // Animation items //-------------------------------------------------------------------------------------------------------------- var $cards = $('.organisation.item'); $cards.each(function(index) { $(this).delay(50*index).queue(function() { $(this).addClass('anime').dequeue(); }); }); // Filtres répertoire //-------------------------------------------------------------------------------------------------------------- if($('#repertoire.liste').length>0) { var top = $('.sticky-scroll').offset().top + 100; $(window).scroll(function (event) { var y = $(this).scrollTop(); if (y >= top) $('.sticky-scroll').addClass('fixed'); else $('.sticky-scroll').removeClass('fixed'); //$('.sticky-scroll').width($('.sticky-scroll').parent().width()); }); } // Positionnement répertoire //-------------------------------------------------------------------------------------------------------------- if($('.category.selected').length>0) { var windowWidth = $(window).width(); var elementWidth = $(".category.selected").width(); var offset = (windowWidth/2) - (elementWidth/2); $('#categories').animate({ scrollLeft: $(".category.selected").offset().left-offset }, 20); } // Navigation mobile //-------------------------------------------------------------------------------------------------------------- $('#btn-mobile-menu').click(function () { $('body').toggleClass('nav-on'); }); });