芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/kwesioben.com/thefirstcookout/thefirstcookout/js/custom.js
(function ($) { "use strict"; // MENU $('.navbar-collapse a').on('click',function(){ $(".navbar-collapse").collapse('hide'); }); // CUSTOM LINK $('.smoothscroll').click(function(){ var el = $(this).attr('href'); var elWrapped = $(el); var header_height = $('.navbar').height(); scrollToDiv(elWrapped,header_height); return false; function scrollToDiv(element,navheight){ var offset = element.offset(); var offsetTop = offset.top; var totalScroll = offsetTop-navheight; $('body,html').animate({ scrollTop: totalScroll }, 300); } }); })(window.jQuery);