码迷,mamicode.com
首页 > 其他好文 > 详细

图片切换(练习)

时间:2017-04-20 16:45:49      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:dem   document   head   练习   ati   length   cti   flow   src   

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.demo{
width:200px;
height: 140px;
overflow:hidden;
position: relative;
}
.demo .imgs
{
position: absolute;
width:600px;
height:140px;

}
.demo .imgs img{
width:200px;
float: left;
}
</style>

</head>
<body>
<div id="demo" class="demo">
<div id="imgs" class="imgs">
<img src="images/t1.jpg" >
<img src="images/t2.jpg" >
<img src="images/t3.jpg" >
</div>
</div>
<button id="prev"></button><button id="next"></button>
<script>
function $(id){
return document.getElementById(id);
}
var demo=$(‘demo‘);
var imgs=$(‘imgs‘);
var prev=$(‘prev‘);
var next=$(‘next‘);
var images=imgs.getElementsByTagName(‘img‘);
var n=0;
next.onclick=function(){
if(n<images.length-1){
n++;
}
else{
n=images.length-1;
}

imgs.style.left=-n*200+"px";
}

prev.onclick=function(){
if(n>0){
n--;
}
else{
n=0;
}

imgs.style.left=-n*200+"px";
}

</script>
</body>
</html>

图片切换(练习)

标签:dem   document   head   练习   ati   length   cti   flow   src   

原文地址:http://www.cnblogs.com/mrluobiao/p/6739546.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!