最近没事的时候在研究jQuery,发现用jQuery实现图片轮播效果更加的简单、代码更少,现将源码粘贴出来供你们学习交流之用。
js以下:
javascript
鼠标停留版(参考malk的js改写的):
css
一个完整的使用jQuery实现图片轮播示例:html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>jQuery实现图片轮播</title>
<style type="text/css">
<!--
div,a{margin:0;padding:0;}img{border:0px;}
.imgsBox{overflow:hidden;width:282px;height:176px;}
.imgs a{display:block;width:282px;height:164px;}
.clickButton{background-color:#888888;width:282px;height:12px;position:relative;top:-1px;_top:-5px;}
.clickButton div{float:right;}
.clickButton a{background-color:#666;border-left:#ccc 1px solid;line-height:12px;height:12px;font-size:10px;float:left;padding:0 7px;text-decoration:none;color:#fff;}
.clickButton a.active,.clickButton a:hover{background-color:#d34600;}
-->
</style>
</head>java
<body>
<div class="imgsBox">
<div class="imgs">
<a href="#">
<img id="pic" src="p_w_picpaths/01.jpg" width="282" height="164" />
</a>
</div>
<div class="clickButton">
<div>
<a class="active" href="">1</a>
<a class="" href="">2</a>
<a class="" href="">3</a>
<a class="" href="">4</a>
</div>
</div>
</div>
</body>
<script src="../js/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".clickButton a").attr("href","javascript:return false;");
$(".clickButton a").each(function(index){
$(this).click(function(){
changeImage(this,index);
});
});
autoChangeImage();
});
function autoChangeImage(){
for(var i = 0; i<=10000;i++){
window.setTimeout("clickButton("+(i%4+1)+")",i*3000);
}
}
function clickButton(index){
$(".clickButton a:nth-child("+index+")").click();
}
function changeImage(element,index){
var arryImgs = ["../p_w_picpath/01.jpg","../p_w_picpath/02.jpg","../p_w_picpath/03.jpg","../p_w_picpath/04.jpg"];
$(".clickButton a").removeClass("active");
$(element).addClass("active");
$(".imgs img").attr("src",arryImgs[index]);
}
</script>
</html>jquery