<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
*{margin:0;
padding:0;
list-style:none;}
div{
width:300px;
height:450px;
margin:0 auto;
position:relative;
}
.wrap{height:450px;
width:300px;
margin:0px auto;
overflow: hidden;
position: relative;
margin:100px auto;
bottom:-330px;
left:-400px;}
.wrap ul{position:absolute;}
.wrap ul li{height:450px;}
.wrap ol{position:absolute;
right:9px;
bottom:4px;}
.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;}
</style>
<script type="text/javascript">
window.onload=function(){
var wrap=document.getElementById('wrap'),
pic=document.getElementById('pic'),
list=document.getElementById('list').getElementsByTagName('li'),
index=0,
timer=null;
function auto(){
timer=setInterval(function(){
index++;
if(index>=list.length){
index=0;
}
change(index);
},2000);
}
auto();
function change(curIndex){
pic.style.marginTop=-170*curIndex+'px';
for(var n=0;n<list.length;n++){
list[n].className='';
}
list[curIndex].className='on';
index=curIndex;
}
wrap.onmouseover=function(){
clearInterval(timer);
}
wrap.onmouseout=auto;
for(var i=0;i<list.length;i++){
list[i].id=i;
list[i].onmouseover=function(){
change(this.id);
}
}
}
</script>
</head>
<body>
<div class="wrap" id='wrap'>
<ul id="pic">
<li><img src="../../../Pictures/6_9g-fxneefv9065648.jpg" alt=""></li>
<li><img src="../../../Pictures/kKmM-fxneefs5558753.jpg" alt=""></li>
<li><img src="../../../Pictures/oLpQ-fxneefv9065528.jpg" alt=""></li>
<li><img src="../img/4.jpg" alt=""></li>
<li><img src="../img/5.jpg" alt=""></li>
</ul>
<ol id="list">
<li class="on">1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
</ol>
</div>
</body>
</html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
*{margin:0;
padding:0;
list-style:none;}
div{
width:300px;
height:450px;
margin:0 auto;
position:relative;
}
.wrap{height:450px;
width:300px;
margin:0px auto;
overflow: hidden;
position: relative;
margin:100px auto;
bottom:-330px;
left:-400px;}
.wrap ul{position:absolute;}
.wrap ul li{height:450px;}
.wrap ol{position:absolute;
right:9px;
bottom:4px;}
.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;}
</style>
<script type="text/javascript">
window.onload=function(){
var wrap=document.getElementById('wrap'),
pic=document.getElementById('pic'),
list=document.getElementById('list').getElementsByTagName('li'),
index=0,
timer=null;
function auto(){
timer=setInterval(function(){
index++;
if(index>=list.length){
index=0;
}
change(index);
},2000);
}
auto();
function change(curIndex){
pic.style.marginTop=-170*curIndex+'px';
for(var n=0;n<list.length;n++){
list[n].className='';
}
list[curIndex].className='on';
index=curIndex;
}
wrap.onmouseover=function(){
clearInterval(timer);
}
wrap.onmouseout=auto;
for(var i=0;i<list.length;i++){
list[i].id=i;
list[i].onmouseover=function(){
change(this.id);
}
}
}
</script>
</head>
<body>
<div class="wrap" id='wrap'>
<ul id="pic">
<li><img src="../../../Pictures/6_9g-fxneefv9065648.jpg" alt=""></li>
<li><img src="../../../Pictures/kKmM-fxneefs5558753.jpg" alt=""></li>
<li><img src="../../../Pictures/oLpQ-fxneefv9065528.jpg" alt=""></li>
<li><img src="../img/4.jpg" alt=""></li>
<li><img src="../img/5.jpg" alt=""></li>
</ul>
<ol id="list">
<li class="on">1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
</ol>
</div>
</body>
</html>