js简易的图片自动轮播

这个小DEMO,主要用box固定长宽用于显示图片,将图片放入imagebox中,连接起来,每次换图片则将imagebox的style属性的margin-left改动,能形成轮播的效果。


<!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>无标题文档</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/图片点击轮转/image-53.jpg" /> 
  <img class="trans_image" src="images/图片点击轮转/image-54.jpg"/> 
  <img class="trans_image" src="images/图片点击轮转/image-55.jpg"/> 
  <img class="trans_image" src="images/图片点击轮转/image-56.jpg"/> 
  </div>
</div>
<div>
  <input type="button" value="left" οnclick="turnleft()"/>
  <input  type="button" value="right" οnclick="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.οnmοuseοver=function(){clearInterval(int);}
a.οnmοuseοut=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>


  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值