גלילה מונפשת לקישורים | Smooth Scrolling For Anchor Links

User Image

, מתכנתת PHP, WordPress
07 פברואר 2017

גלילה מונפשת לעמודי OnePage כשהתפריט הראשי מקשר לאזורי תוכן על אותו הדף.

JS

את הקוד הזה יש להכניס ב-footer.php
ממש לפני סגירת תגית body

$(document).ready(function(){
	$(".anchor_scroll a").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;
	        }
	    }
	});
});

כתיבת תגובה