
| Current Path : /var/www/html/german-vocational.cn/themes/showcase_lite/js/custom/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/german-vocational.cn/themes/showcase_lite/js/custom/smooth-scroll.js |
jQuery(document).ready(function($) {
if ($(".smooth-scroll").length>0) {
$(".smooth-scroll a, a.smooth-scroll").click(function() {
if (location.pathname.replace(/^\//,"") == this.pathname.replace(/^\//,"") && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $("[name=" + this.hash.slice(1) +"]");
if (target.length) {
$("html,body").animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
}
});