//адаптивное меню на главной (function($){ $(function() { $('.menu__icon').on('click', function() { $(this).closest('.menu').toggleClass('menu_state_open'); jQuery('.overlay').addClass('state_open'); }); }); })(jQuery); //закрытие меню по клику вне контейнера (function($){ jQuery(function() { jQuery('.overlay').on('click', function() { jQuery('.menu').toggleClass('menu_state_open'); jQuery('.overlay').removeClass('state_open'); }); }); })(jQuery); //плавная прокрутка наверх jQuery(function() { jQuery('.scrollup-btn a, .scrollup-btn').click(function(){ event.preventDefault(); jQuery('html, body').animate({scrollTop:0}, 'slow'); }); }); //изменение чисел от 0 до jQuery(document).ready(function () { jQuery('.count').each(function () { jQuery(this).prop('Counter',0).animate({ Counter: jQuery(this).text() }, { duration: 1500, easing: 'swing', step: function (now) { jQuery(this).text(Math.ceil(now)); } }); }); });