<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
.border{width: 400px;height: 100px;}
#pic1{height: 400px;width: 400px;}
.pic2{width: 90px;height: 90px;}
#PICU{width: 440px;left: 0px;padding:0px;margin:0px}
.LI1{
padding: 5px;
float: left;
width: 90px;
height: 90px;
list-style: none;
background-color: gray;
cursor: pointer;
}
</style>
</head>
<body>
<img id="pic1" src="img/1.jpg" onmouseover="Picstop();" onmouseout="Pgo()"/>
</div>
<div class="border">
<ul id="PICU">
<li class="LI1" onmouseover="Pstop(1);" onmouseout="Pgo()" style="background-color: red;"><img class="pic2" src="img/1.jpg" ></li>
<li class="LI1" onmouseover="Pstop(2);" onmouseout="Pgo()"><img class="pic2" src="img/2.jpg" ></li>
<li class="LI1" onmouseover="Pstop(3);" onmouseout="Pgo()"><img class="pic2" src="img/3.jpg" ></li>
<li class="LI1" onmouseover="Pstop(4);" onmouseout="Pgo()"><img class="pic2" src="img/4.jpg" ></li>
</ul>
</div>
<script>
var n=0;
var showImg =document.getElementById("pic1");
var picNum=document.getElementsByClassName("LI1");
console.log(picNum[0]);
window.onload = function(){
inter = window.setInterval("change()",1500);
}
function change(){
if(n==4){
picNum[n-1].style.backgroundColor="gray";
n=0;
}
for(var a=1;a<5;a++){
if(a!=(n))picNum[a-1].style.backgroundColor="gray";
}
showImg.src='img/'+(n+1)+'.jpg';
if(n>0)picNum[n-1].style.backgroundColor="gray";
picNum[n].style.backgroundColor="red";
n++;
}
function Picstop(){
window.clearInterval(inter);
}
function Pstop(i){
console.log(i);
picNum[i-1].style.backgroundColor="red";
for(var a=1;a<5;a++){
if(a!=(i))picNum[a-1].style.backgroundColor="gray";
}
showImg.src='img/'+i+'.jpg';
window.clearInterval(inter);
}
function Pgo(){
inter = setInterval("change()",1500);
}
</script>
</body>
</html>
7.17 JS实现商品轮播
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- PC端上实现图片轮播效果非常简单,只要通过使用click事件就可以非常简单的实现效果,但是在移动端上,就要通过核心...
- 关于原生js实现html的轮播网上有很多很多,但大都写的太长太多,然后就懒得看了,最后还是决定自己去摸索j...