0
スクロールバーを非表示にし、ボタンを押したまま水平方向にスクロールすると、1つの列が目的の方向にスクロールします。ボタンを押したときの水平方向と垂直方向の目に見えないスクロール
しかし、悲しいことに、それを動作させるように見えることはできません。
$('#left-button').click(function() {
event.preventDefault();
$('.row-fluid').animate({
scrollLeft: "+=200px"
}, "slow");
});
$('#right-button').click(function() {
event.preventDefault();
$('.row-fluid').animate({
scrollLeft: "-=200px"
}, "slow");
});
.row-fluid {
overflow: auto;
white-space: nowrap;
}
.row-fluid .col-lg-4 {
display: inline-block;
float: none;
overflow-y: scroll;
height: 700px;
}
.image-wrapper {
display: block;
width: 300px;
height: 200px;
background-color: black;
margin: 0 auto;
margin-bottom: 20px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="container" style="overflow: auto">
<div class="row">
<a href="javascript:;" id="left-button">left</a>
<a href="javascript:;" id="right-button">right</a>
</div>
<div class="row-fluid">
<div class="col-lg-4">
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
</div>
<div class="col-lg-4">
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
</div>
<div class="col-lg-4">
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
</div>
<div class="col-lg-4">
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
</div>
<div class="col-lg-4">
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
</div>
<div class="col-lg-4">
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
<a href="" class="image-wrapper"></a>
</div>
</div>
</div>
私は最終的にそれが応答するためのブートストラップを使用したいPS。
この情報をお寄せいただきありがとうございます – shady