我已經做了一些改動你的代碼。嘗試像這樣的HTML:
<div id="slideshow">
<img src="http://www.randerstegl.dk/fileadmin/fugefarver/GFXSharedMortars/fugeGraa.png" alt="" class="active" width="500" height="300"/>
<img src="http://www.randerstegl.dk/fileadmin/fugefarver/GFXSharedMortars/fugeAnthrazit.png" width="500" height="300" />
</div>
<a href="#" class="change-mortar-link" onclick="slideSwitch();">Change mortar</a>
在CSS:
#slideshow {
position:relative;
height:350px;
}
#slideshow IMG {
position:absolute;
top:0;
left:0;
z-index:8;
}
#slideshow IMG.active {
z-index:10;
}
#slideshow IMG.last-active {
z-index:9;
}
和JavaScript代碼:
function slideSwitch() {
var $active = $('#slideshow IMG.active');
if ($active.length == 0) $active = $('#slideshow IMG:last');
var $next = $active.next().length ? $active.next()
: $('#slideshow IMG:first');
$active.addClass('last-active');
$next.css({opacity: 0.0})
.addClass('active')
.animate({opacity: 1.0}, 1000, function() {
$active.removeClass('active last-active');
});
}
而且在here你可以找到更多信息。並且here是JsFiddle中的運行示例。
其工作正常我的克羅默瀏覽器,在哪個瀏覽器是你測試? –
嗯..我在Google Chrome中測試 –