javaScript实现图片轮播

<!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>JavaScript(幻灯片上下滑动效果)</title>

<script>
window.οnlοad=function ()
{
	var oDiv =document.getElementById('play');
	var aBtn=document.getElementsByTagName('ol')[0].getElementsByTagName('li');
	var oUl=document.getElementsByTagName('ul')[0];
	var now=0;
	for(var i=0;i<aBtn.length;i++){
        aBtn[i].index=i;
        aBtn[i].οnclick=function(){
            now=this.index;
            tab();
        };
	}
	function tab(){
        for(var i=0;i<aBtn.length;i++){
             aBtn[i].className='';
        }     
        aBtn[now].className='active';
        oUl.style.top=-150*now+'px';
	};
	var timerId;
	timerId=setInterval(function(){
			if(now<aBtn.length-1){
				now++;
				oUl.style.top=-150*now+'px';
		 		for(var i=0;i<aBtn.length;i++){
            		 aBtn[i].className='';
        		}     
        		aBtn[now].className='active';
			}else{
                now=-1;
			}
	  },2000);
	oUl.οnmοuseοver=function(){
        clearInterval(timerId);
	}
	oUl.οnmοuseοut=function(){
       timerId=setInterval(function(){
       		if(now<aBtn.length-1){
				now++;
				oUl.style.top=-150*now+'px';
		 		for(var i=0;i<aBtn.length;i++){
            		 aBtn[i].className='';
        		}     
        		aBtn[now].className='active';
			}else{
                now=-1;
			}
       },2000)
	}
};
</script>
</head>
<body>
<div class="play" id="play">
    <ol>
    	<li class="active">1</li>
        <li>2</li>
        <li>3</li>
        <li>4</li>
        <li>5</li>
    </ol>
	<ul>
		<li><a href="javascript:;"><img src="./images/tupianrun/1.jpg" alt="广告一" /></a></li>
		<li><a href="javascript:;"><img src="./images/tupianrun/2.jpg" alt="广告二" /></a></li>
		<li><a href="javascript:;"><img src="./images/tupianrun/3.jpg" alt="广告三" /></a></li>
		<li><a href="javascript:;"><img src="./images/tupianrun/4.jpg" alt="广告四" /></a></li>
		<li><a href="javascript:;"><img src="./images/tupianrun/5.jpg" alt="广告五" /></a></li>
	</ul>
</div>
</body>
<style type="text/css">
*{margin: 0;padding: 0}
li{list-style: none;}
img{border: none;}
body{background: #ecfaff;}	

.play{width: 470px;height: 150px;overflow: hidden;position: relative;margin: 150px auto 0;}
.play .text{width: 100%;height: 60px;position: absolute;left: 0px;bottom: 0px;}
.play .text div{position: absolute;left: 0;top: 0px;height: 100%;width: 100%;background: black;filter:alpha(opacity:40);opacity: 0.4;z-index: 99;}
.play .text span {position:absolute; left:0; top:0; width:100%; height:100%; line-height:60px; color:white; z-index:999; text-align:center; font-size:20px;}

ol{position: absolute;right: 5px;bottom: 5px;z-index: 9999;}
ol li{float: left;margin-right: 3px;display: inline;cursor: pointer;background: #fcf2cf;border: 1px solid #f47500;padding: 2px 6px;color:#d94b01; font-family: arial;font-size: 12px;}
.active{padding: 3px 8px;font-weight: bold;color: #ffffff;background:#ffb442 ;position: relative;bottom: 2px;}

ul{position: absolute;top: 0;left: 0; z-index: 1;}
ul li { width: 470px; height: 150px; float: left; }
ul img { float: left; width: 470px; height: 150px;}
</style>
</html>
实现的效果如图:






  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值