java添加轮播图,[Java教程]js写的简单轮播图

[Java教程]js写的简单轮播图

0

2015-07-06 18:00:02

这个轮播图代码是从网上找来的,专门找了个写法简单的,只是作为一个小练习,大概原理如下:

1.首先是图片切换

2.自动播放

3.调用自动播放

4.移动到容器上边停止播放,离开自动播放

5.移动到导航上停止播放,离开自动播放

6.移动到导航上,切换相对应的导航

然后贴代码:

Document

*{margin:0;

padding:0;

list-style:none;}

.wrap{height:170px;

width:490px;

margin:60px auto;

overflow: hidden;

position: relative;

margin:100px auto;}

.wrap ul{position:absolute;}

.wrap ul li{height:170px;}

.wrap ol{position:absolute;

right:5px;

bottom:10px;}

.wrap ol li{height:20px; width: 20px;

background:#ccc;

border:solid 1px #666;

margin-left:5px;

color:#000;

float:left;

line-height:center;

text-align:center;

cursor:pointer;}

.wrap ol .on{background:#E97305;

color:#fff;}

window.οnlοad=function(){

var wrap=document.getElementById('wrap'),

pic=document.getElementById('pic').getElementsByTagName("li"),

list=document.getElementById('list').getElementsByTagName('li'),

index=0,

timer=null;

// 定义并调用自动播放函数

timer = setInterval(autoPlay, 2000);

// 鼠标划过整个容器时停止自动播放

wrap.onmouseover = function () {

clearInterval(timer);

}

// 鼠标离开整个容器时继续播放至下一张

wrap.onmouseout = function () {

timer = setInterval(autoPlay, 2000);

}

// 遍历所有数字导航实现划过切换至对应的图片

for (var i = 0; i < list.length; i++) {

list[i].onmouseover = function () {

clearInterval(timer);

index = this.innerText - 1;

changePic(index);

};

};

function autoPlay () {

if (++index >= pic.length) index = 0;

changePic(index);

}

// 定义图片切换函数

function changePic (curIndex) {

for (var i = 0; i < pic.length; ++i) {

pic[i].style.display = "none";

list[i].className = "";

}

pic[curIndex].style.display = "block";

list[curIndex].className = "on";

}

};

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5

只是个人的一个小练习,希望诸位大神看了,不要黑我...

本文网址:http://www.shaoqun.com/a/122905.html

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们:admin@shaoqun.com。

JS

0

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值