HTML
<div class="next">Next</div>
<div class="prev">Prev</div>
jQuery
$(function() {
$('ul.nav a').bind('click',function(event){
var $anchor = $(this);
$('html, body').stop().animate({
scrollLeft: $($anchor.attr('href')).offset().left
}, 1000);
event.preventDefault();
});
});
这个想法听起来很简单,但我根本无法让它发挥作用。我希望能够在下一个或上一个悬停时滚动页面。我可以单击滚动以向下锚定,但这个添加的功能将是完美的。