我创建了一个图像褪色幻灯片阅读这篇文章。代码如下所示:
$(document).ready(function() {
$('#iPhoneExample img:gt(0)').hide();
setInterval(function() {
$('#iPhoneExample :first-child').fadeOut(1000)
.next('img').fadeIn(1000)
.end().appendTo('#iPhoneExample');
}, 3000);
});
这是 HTML 和 CSS:
<div id="iPhoneExample">
<img src="photo1.png" alt="" />
<img src="photo2.png" alt="" />
<img src="photo3.png" alt="" />
<img src="photo4.png" alt="" />
<img src="photo5.png" alt="" />
<img src="photo6.png" alt="" />
</div>
#iPhoneExample {
width:305px;
height:597px;
background:url('immagini/iphoneBg.png') center no-repeat;
position:relative;
margin:0px 20px 0px 94px;
}
#iPhoneExample img {
position:absolute;
top:106px;
right:22px;
bottom:104px;
left:25px;
}
现在我想这样做。当页面加载时,幻灯片开始,但我有 6 个链接,每个图像一个,我想用来显示相应的图像......例如幻灯片开始并显示 photo3 但如果我点击 photo5 链接,幻灯片必须显示照片 5,然后继续显示照片 6 等。
我相信我应该使用该.click
功能,但我不知道在其中写什么。我是 jQuery 的新手。
非常感谢你的帮助!