我还在学习JavaScript和需要一些帮助。 我在做下一个和上导致滚动到下一个或上一个按钮<td>
的网页上。 我想实现这个到VIRB网站的现有结构。 标记看起来是这样的:
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);
//});
});
这里是的jsfiddle我的工作