我還在學習JavaScript並需要一些幫助。我正在製作下一個和上一個按鈕,導致滾動到頁面上的下一個或上一個<td>
's。我正在試圖將這個實現到virb站點的現有結構。 標記看起來是這樣的:下一個/上一個按鈕onClick滾動到下一個和上一個的
div id="next">next</div><div id="prev">prev</div>
<table>
<tr><td>code that includes img</td></tr>
<tr><td>code that includes img</td></tr>
<tr><td>code that includes img</td></tr>
<tr><td>code that includes img</td></tr>
<tr><td>code that includes img</td></tr>
</table>
這是我的工作腳本:
jQuery.easing.def = "easeInOutQuad";
$("#next").click(function(){
//$(this).animate(function(){
$('html, body').animate({
scrollLeft: $("td").next.offset().left
}, 600);
//});
});
這裏是更新的小提琴http://jsfiddle.net/garretthaas/kzqVp/8/ – glh16