欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

用box固定長(zhǎng)寬實(shí)現(xiàn)圖片自動(dòng)輪播js代碼

 更新時(shí)間:2014年06月09日 10:38:53   作者:  
這篇文章主要介紹了用box固定長(zhǎng)寬實(shí)現(xiàn)圖片自動(dòng)輪播效果,需要的朋友可以參考下
這個(gè)小DEMO,主要用box固定長(zhǎng)寬用于顯示圖片,將圖片放入imagebox中,連接起來,每次換圖片則將imagebox的style屬性的margin-left改動(dòng),能形成輪播的效果。
復(fù)制代碼 代碼如下:

<!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=utf-8" />
<title>無標(biāo)題文檔</title>
<style>
.box {
width: 900px;
height: 350px;
margin: 20px;
overflow: hidden;
margin:0 auto;
}
.imagebox {
width: 3600px;
height: 350px;
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
transition: all 1s ease-in-out;
}
.imagebox img {
width: 900px;
float: left;
height: 350px;
}
</style>
</head>

<body>
<div class="box">
<div id="ImageBox" class="imagebox">
<img class="trans_image" src="images/圖片點(diǎn)擊輪轉(zhuǎn)/image-53.jpg" />
<img class="trans_image" src="images/圖片點(diǎn)擊輪轉(zhuǎn)/image-54.jpg"/>
<img class="trans_image" src="images/圖片點(diǎn)擊輪轉(zhuǎn)/image-55.jpg"/>
<img class="trans_image" src="images/圖片點(diǎn)擊輪轉(zhuǎn)/image-56.jpg"/>
</div>
</div>
<div>
<input type="button" value="left" onclick="turnleft()"/>
<input type="button" value="right" onclick="turnright()"/>
</div>
<script language="javascript">
var int=setInterval("change()",3*1000);
var a=document.getElementById("ImageBox");
var i=1;
function change(){
if(i==4){
i=0;
}
i=i+1;
a.style.marginLeft=(1-i)*900+"px";

}
function stopchange(){clearInterval(int);}
function startchange(){int=setInterval("change()",2*1000);}
a.onmouseover=function(){clearInterval(int);}
a.onmouseout=function() {int=setInterval("change()",2*1000);}
function turnleft(){
stopchange();
i=i+1;
a.style.marginLeft=(1-i)*900+"px";
if(i==4){
i=0;
}
startchange();
}
function turnright(){
stopchange();
if(i>1){
a.style.marginLeft=(2-i)*900+"px";
i=i-1;
}else{
a.style.marginLeft=-3*900+"px";
i=4;
}
startchange();
}
</script>
</body>
</html>

相關(guān)文章

最新評(píng)論