我有一个固定的 div 大小宽度。我将其表示为 x
我有一个固定的 div 大小高度。
我想在 div 的任一侧添加按钮,允许用户向右导航,即向右移动 x 像素量,即显示 div 中的下一个条目。
任何人都可以提出解决这个问题的方法吗?
这是我当前的 html / css:
<div class="outer_container" style="overflow: scroll; overflow-y: hidden; width:577px; border-style:solid; border-width:5px; border-color:#578278;">
<div class="inner_container" style="width: 10000px;">
<table>
<tr>
<td style=" width: 577px; ">
<div style="text-align:left; margin: 0px 10px 10px 10px; width:557px; ">
<p>Add Comment to the Tesco Catalogue</p>
<form class="comment_form" action="profile" method="post">
<textarea style="resize:none;" maxlength="250" rows="2" cols="65" placeholder="Enter your comment here..."></textarea>
<input type="submit" value="Submit"/>
</form>
</div>
</td>
<!-- do a for loop here to generate all other items -->
<td style="width:577px;">
<div style="text-align:left; padding: 5px 10px 5px 10px; margin: 0px 10px 10px 10px; width:567px; border-style:solid; border-width:1px; border-color:#578278;">
<p class="comment_username"> User said at such a time</p>
<p class="comment_comment"> Comment ......</p>
</div>
</td>
<td style="width:577px;">
<div style="text-align:left; padding: 5px 10px 5px 10px; margin: 0px 10px 10px 10px; width:567px; border-style:solid; border-width:1px; border-color:#578278;">
<p class="comment_username"> User said at such a time</p>
<p class="comment_comment"> Comment ......</p>
</div>
</td>
</tr>
</table>
</div>
</div>
这是jsfiddle
所以我想在 div 的任一侧添加两个按钮,这两个按钮都向左或向右移动 x 个像素,显然是向左按钮,例如上一条评论,右按钮,下一条评论。
因此,在我创建的 html 中,我希望滚动条一次向左或向右移动 577px,具体取决于用户单击。
让我知道你们的想法!