我想使用JavaScript創建動畫。使用javascript製作圖片
圖片應該重複(循環),問題是當腳本到達最後的圖片時有一個空的空間。
我要的是:PIC1> PIC2> PIC3> PIC4>圖像pic5> PIC1> ...
代碼:
<style type="text/css">
img {
position: absolute;
center: 0px;
top: 0px;
}
#img3 { z-index: 3; }
#img2 { z-index: 2; }
#img1 { z-index: 1; }
</style>
<img style="top: 0px; height: 199px;" src="img1.jpg" id="img1">
<img img2.jpg" id="img2"><img src="img3.jpg" id="img3">
<script src="http://code.jquery.com/jquery.js"></script>
<script>
$(function() {
$('img').first().fadeOut(2000, function suivante() {
$(this).next('img').fadeOut(2000,suivante);
});
});
</script>
我發現的是,我應該使用功能bis()但我不知道如何!
你正在所有的畫面消失,更好的辦法是使用'fadeIn'與'fadeOut'一起使它們可見。 – 2013-05-13 08:51:25