私は現在jqueryスライダーを構築しています。連続ループで実行するにはどうすればよいですか? 私はこの投稿をフォローしましたが、どちらも機能していないようです。誰かが私を正しい方向に向けることができますか?
ここに私のコードとJSFiddleがあります:
<style>
img {
position:absolute;
top:0px;
left:0px;
}
#img {
width:652px;
height:314px;
position:absolute;
top:0px;
right:0px;
z-index:999999;
}
#img1 {
width:652px;
height:314px;
position:absolute;
top:0px;
right:0px;
z-index:999;
}
#img2 {
width:652px;
height:314px;
position:absolute;
top:0px;
right:0px;
z-index:99;
}
#content {
height:350px;
width:652px;
position: relative
}
</style>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<div id="content">
<div id="img1" style="background:url(scarf01.jpg);"></div>
<div id="img2" style="background:url(scarf02.jpg);"></div>
</div>
<script>
$(document).ready(function () {
$('#img1').delay(2000).animate(
{"width": "0px"},
1000);
$('#img2').delay(4000).animate(
{"width": "0px"},
1000, function() {
});
});
</script>