<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.wrap{
width: 400px;
height: 200px;
margin: 200px auto;
overflow: hidden;
position:relative;
}
.box1{
width: 80000px;
margin-left: -400px;
transition: all 1s;
}
img{
width: 400px;
height: 200px;
display: block;
float: left;
}
.left,.right{
position: absolute;
background-color: darkgrey;
opacity: 0.5;
width: 20px;
height: 50px;
border-radius: 5px;
line-height: 50px;
text-align: center;
font-size: 20px;
top:75px;
cursor: default;
}
.right{
right: 0;
}
ul{
position: absolute;
top: 150px;
left: 100px;
}
li{
list-style: none;
width: 20px;
height: 20px;
background-color: gainsboro;
border-radius: 50%;
float: left;
margin-right: 10px;
}
</style>
</head>
<body>
<div class="wrap">
<div class="box1">






</div>
<div class="left"><</div>
<div class="right">></div>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</body>
<script type="text/javascript">
var wrap=document.getElementsByClassName("wrap");
var boxs=document.getElementsByClassName("box1");
var left=document.querySelector(".left");
var right=document.querySelector(".right");
var lis=document.querySelectorAll("li");
var timer=null;
var a=-400;
var b=0;
lis[0].style.backgroundColor="yellow";
function timefn () {
clearInterval(timer);
timer = setInterval(function () {
a=a-400;
boxs[0].style.transition=1+"s";
if(a == -2000){
setTimeout(function(){
a = -400;
boxs[0].style.transition="0s all";
boxs[0].style.marginLeft =a+"px";
}, 1000);
}
boxs[0].style.marginLeft =a+"px";
b=a/-400-1;
if(b==4){
b=0;
}
for(var i=0;i<4;i++){
lis[i].style.backgroundColor="gainsboro"
}
lis[b].style.backgroundColor="yellow";
},2000)
}
timefn();
left.onclick = function () {
a=a+400;
boxs[0].style.transition=1+"s";
if(a==0){
setTimeout(function(){
a = -1600;
boxs[0].style.transition="0s all";
boxs[0].style.marginLeft =a+"px";
},900);
}
boxs[0].style.marginLeft =a+"px";
timefn();
for(var i=0;i<4;i++){
lis[i].style.backgroundColor="gainsboro"
}
// b-=1;
// if(b<0){
// b=3;
// }
b=a/-400-1;
if(b==-1){
b=3;
}
console.log(a);
console.log(b);
lis[b].style.backgroundColor="yellow";
}
right.onclick = function () {
a=a-400;
boxs[0].style.transition=1+"s";
if(a==-2000){
setTimeout(function(){
a = -400;
boxs[0].style.transition="0s all";
boxs[0].style.marginLeft =a+"px";
},900);
}
boxs[0].style.marginLeft =a+"px";
timefn();
for(var i=0;i<4;i++){
lis[i].style.backgroundColor="gainsboro"
}
// b+=1;
// if(b>3){
// b=0;
// }
b=a/-400-1;
if(b==4){
b=0;
}
lis[b].style.backgroundColor="yellow";
}
for(var j=0;j<4;j++){
lis[j].index=j;
lis[j].onclick = function () {
for(var k=0;k<4;k++){
lis[k].style.backgroundColor="gainsboro"
}
this.style.backgroundColor="yellow";
clearInterval(timer);
a=(this.index+1)*-400
boxs[0].style.transition=1+"s";
boxs[0].style.marginLeft =a+"px";
timefn();
}
}
// wrap[0].onmouseover = function () {
// clearInterval(timer);
// }
// wrap[0].onmouseout = function () {
// timefn();
// }
</script>
</html>
大图滚动
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 在大家平时浏览网页时,一定经常看到许多首页都会布置一些精美、酷炫的带有滚动效果的图片,使网站更具有吸引力(如图)。...