幻灯片效果

幻灯片效果

<BODY>
<div id="dh">
<img src="images/t1.jpg"/>
<img src="images/t2.jpg"/>
<img src="images/t3.jpg"/>
<img src="images/t4.jpg"/>
<img src="images/t5.jpg"/>
</div>

 

========================

 

*{margin:0;padding:0;}
ul{list-style:none;}
a{text-decoration:none;}
a:hover{text-decoration:underline;color:red;}
html,body{width:100%;height:100%;background:#FFF;font-size:12px;font-family:"宋体"}
#dh{width:595px;height:260px;margin:6px;overflow:hidden;}

 

==========================================

 

$(function(){
$("#dh>img").not(":last").hide();
setInterval(function(){
if($("#dh>img").filter(":visible").prev().is("img"))
{
$("#dh>img").filter(":visible").fadeOut(200).prev().fadeIn(500);
}
else{
$("#dh>img").filter(":visible").fadeOut(200).end().last().fadeIn(500);
}
},2000);


})

 

posted @ 2015-07-16 16:46  乐少007  阅读(156)  评论(0编辑  收藏  举报