画像をクリックすると前進するスライダーを作成しました。[次へ] ボタンと [前へ] ボタンを追加しようとしていますが、問題が発生しています。どんな助けでも大歓迎です!
これが私がどこにいるかのデモです... JSFiddle
<div id="container">
<div class="next">Next</div>
<div class="prev">Previous</div>
<div id="image1" class="box">Orange</div>
<div id="image2" class="box">Blue</div>
<div id="image3" class="box">Green</div>
<div id="image4" class="box">Red</div>
<div id="image5" class="box">Yellow</div>
</div>
CSS
body {
padding: 0px;
}
.next {
width:100px;
height:50px;
}
.prev {
width:100px;
height:50px;
}
#container {
position: absolute;
margin: 0px;
padding: 0px;
width: 100%;
height: 100%;
overflow: hidden;
}
.box {
position: absolute;
width: 50%;
height: 300px;
line-height: 300px;
font-size: 50px;
text-align: center;
left: 150%;
top: 100px;
margin-left: -25%;
}
#image1 {
background-color: orange;
left: 50%;
}
#image2 {
background-color: blue;
}
#image3 {
background-color: green;
}
#image4 {
background-color: red;
}
#image5 {
background-color: yellow;
}
Jクエリ
$('.box').click(function() {
$(this).animate({
left: '-50%'
}, 500, function() {
$(this).css('left', '150%');
$(this).appendTo('#container');
});
$(this).next().animate({
left: '50%'
}, 500);
});
</p>