-2
Q
圖像幻燈片腳本
A
回答
1
您可以使用此: http://jquery.malsup.com/cycle/
JavaScript是比PHP爲了這個美好的。
1
您無法使用PHP製作幻燈片。您使用JavaScript來製作幻燈片。
退房此鏈接:
http://jquery.malsup.com/cycle/
讓我給你一個簡單的jQuery褪色幻燈片
HTML
<div id="slideshow">
<img src="img/img1.jpg" alt="" class="active" />
<img src="img/img2.jpg" alt="" />
<img src="img/img3.jpg" alt="" />
</div>
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;
}
部分JQuery
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');
});
}
$(function() {
setInterval("slideSwitch()", 5000);
});
哦!是的,不要忘記導入jQuery庫
相關問題
- 1. 圖像幻燈片的JavaScript幻燈片
- 2. 幻燈片圖像
- 3. Java腳本幻燈片
- 4. 像幻燈片
- 5. 基本2圖像幻燈片在Jquery
- 6. CSS Centering幻燈片圖像
- 7. 幻燈片在圖像 - jQuery
- 8. 從JSON幻燈片圖像
- 9. php + mysql圖像幻燈片
- 10. 彈性圖像幻燈片
- 11. 幻燈片 - 圖像格外
- 12. 分層圖像幻燈片
- 13. iPhone圖像幻燈片
- 14. 創建幻燈片圖像
- 15. setInterval的幻燈片圖像
- 16. jQuery的圖像幻燈片
- 17. Java腳本幻燈片放映(添加幻燈片效果)
- 18. 添加標題幻燈片圖像RMarkdown與reveal.js幻燈片
- 19. 在幻燈片導航中選擇圖像幻燈片
- 20. jQuery的幻燈片添加具有圖像幻燈片容器
- 21. 在幻燈片上擴展圖像活動幻燈片
- 22. Java腳本圖像幻燈片放映(Annimate功能)
- 23. 在JavaScript幻燈片上添加文本右圖幻燈片
- 24. 幻燈片JS,人像定位圖片
- 25. 動畫圖像向左像幻燈片
- 26. Jquery縮略圖圖像幻燈片
- 27. 本地多圖片幻燈片
- 28. 多個幻燈片相同的腳本
- 29. 褪色Java幻燈片腳本
- 30. Jquery幻燈片腳本,暫停點擊
請給你的問題標籤谷歌,選擇衆多解決方案之一,然後告訴我們,如果你有與它的具體問題。 – Quasdunk