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();
});
});
這個想法聽起來很簡單,但我不能得到這個工作的。我希望能夠滾動下一頁或上一頁的懸停頁面。我有點擊滾動來定位,但這個增加的功能將是完美的。
你希望頁面滾動,直到用戶離開下一頁/上一頁或剛剛火一個動作當鼠標進入其中之一? – 2013-03-21 15:31:11
看一下http://jsfiddle.net/pBLAJ/8/ – 2013-03-21 15:39:01