`
lhx1026
  • 浏览: 300725 次
  • 性别: Icon_minigender_2
  • 来自: 广州
社区版块
存档分类
最新评论

js实现图片左右滚动

阅读更多

如下所示:

 

<html>
<head>
<title></title>
</head>
<body>
<style type="text/css">
<!--
#demo {
background: #FFF;
overflow:hidden;
border: 1px dashed #CCC;
width: 930px;
height:120px;
}
#demo img {
border: 1px solid #F2F2F2;
}
#indemo {
float: left;
width: 800%;
}
#demo1 {
float: left;
}
#demo2 {
float: left;
}
-->
</style>
<div id="demo">
<div id="indemo">
<div id="demo1">
<a href=""><img src="images/1.gif" border="0" width="120" height="120" /></a>
<a href=""><img src="images/1.gif" border="0" width="120" height="120" /></a>
<a href=""><img src="images/1.gif" border="0" width="120" height="120" /></a>
</div>
<div id="demo2"></div>
</div>
</div>
<script>
<!--
var speed=10;
var tab=document.getElementById("demo");
var tab1=document.getElementById("demo1");
var tab2=document.getElementById("demo2");
tab2.innerHTML=tab1.innerHTML;
function Marquee(){
if(tab2.offsetWidth-tab.scrollLeft<=0)
tab.scrollLeft-=tab1.offsetWidth
else{
tab.scrollLeft++;
}
}
var MyMar=setInterval(Marquee,speed);
tab.onmouseover=function() {clearInterval(MyMar)};
tab.onmouseout=function() {MyMar=setInterval(Marquee,speed)};
-->
</script>
</body>
</html>
   

 

分享到:
评论
2 楼 xjjaid13 2012-10-15  
1 楼 yuhui2f 2010-06-21  
顶一个!代码既简洁又好用!

相关推荐

Global site tag (gtag.js) - Google Analytics