有沒有一種方法來隨機化這個jQuery幻燈片中的圖像,所以每次頁面刷新時它不會以相同的圖像開始?在這個jQuery幻燈片中隨機化圖像
下面是HTML:
<div id="slideshow">
<img src="http://image.jpg" alt="image 1" class="active">
<img src="http://image.jpg" alt="image 2" >
<img src="http://image.jpg" alt="image 3" >
</div>
這裏是腳本:
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}, 6000, function() {
$active.removeClass('active last-active');
});
}
$(function() {
setInterval("slideSwitch()", 8000);
});
謝謝!!!!
您可以在滑動切換功能中嘗試'Math.random()'。使其在0和2之間生成並使用它來索引圖像 – Saju
不,因爲您的圖像被硬編碼到您的HTML中。您可以在加載頁面時獲得javascript來切換它(image1會始終顯示一秒鐘),或者您可以讓javascript將這些圖片元素放在一起,並隨機分配哪個圖片用於「.active」類。 – George