我想以幻灯片形式显示图像。我有每个图像的链接和标题。
在循环浏览图像时,我还希望图像链接和标题相应地改变。
我该怎么做?
答案 0 :(得分:1)
您可以使用此: http://jquery.malsup.com/cycle/
Javascript优于php。
答案 1 :(得分: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库