<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
*{margin:0;padding:0;}
.wrap{
position: relative;
width:500px;
height: 350px;
margin:50px auto;
}
.wrap ul li{
position: absolute;
top:0;
left:0;
width:100%;
height:350px;
font-size: 100px;
line-height: 350px;
text-align:center;
display: none;
}
.wrap span{
position: absolute;
top:50%;
display: inline-block;
width:30px;
height:50px;
font-size: 30px;
text-align: center;
line-height:50px;
background-color: #ccc;
cursor: pointer;
margin-top: -25px;
}
.wrap span:first-child{
left:0;
}
.wrap span:last-child{
right:0;
}
.wrap ul li.on{
display: block;
}
</style>
</head>
<body>
<div class="wrap">
<ul>
<li class="on" style="background-color: pink;">一</li>
<li style="background-color: blue;">二</li>
<li style="background-color: red;">三</li>
<li style="background-color: yellow;">四</li>
<li style="background-color: green;">五</li>
</ul>
<span id="left"><</span>
<span id="right">></span>
</div>
<script type="text/javascript">
var oLi = document.querySelectorAll("li");
console.log(oLi)
var oL = document.getElementById("left");
var oR = document.getElementById("right");
var length = oLi.length;
var index = 0;
oR.onclick = function(){
// oL[i].index = i;
oLi[index].className = "";//上一张隐藏
index++;
if(index>4){
index = 0;
}
oLi[index].className = "on";//下一张显示
};
oL.onclick = function(){
oLi[index].className = "";//上一张隐藏
index--;
if(index<0){
index = 4;
}
oLi[index].className = "on";//下一张显示
}
</script>
</body>
</html>
点击图片切换
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 项目中需要有listview侧拉出菜单,点击可以置顶,撤销,暂停,删除的功能 在此记录一下。需求是侧拉可以拉出菜单...
- 今天项目需求碰到了一个问题,废话不多说了上图,如下点击右边ImageView动态去切换ImageView的状态,代...