私はまだ 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です