我的問題是關於水平滾動1頁的網站。我使用jQuery進行滾動。當您點擊導航菜單中的鏈接時,您會轉到該部分,但它完全顯示在屏幕的右側。加載鏈接中心jquery
我很新的jQuery,我想在屏幕中心的鏈接部分。現在有人如何做到這一點?
這裏是我使用的代碼:
$(function() {
$('a[href*=#]:not([href=#])').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({
scrollLeft: target.offset().left
}, 1000);
return false;
}
}
});
});
你能分享你的HTML代碼嗎?如果可能的話,在這裏或在jsfiddle中創建一個例子。 –