<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<style type="text/css">
#demo {background: #FFF;overflow:hidden;width:600px;height:81px;}
#demo img {}
#indemo {float: left;width: 600%;}
#demo1 {float: left;}
#demo2 {float: left;}
</style>
</head>
<body>
<div id="demo">
<div id="indemo">
<div id="demo1">
<img src="images/pic1.jpg" border="0" />
<img src="images/pic2.jpg" border="0" />
<img src="images/pic3.jpg" border="0" />
<img src="images/pic4.jpg" border="0" />
</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>
这个是图片无缝连接的效果,在IE里面图片滚动到最好一张,能接着第一张,但是在FF里面就不行了,最后一张跟第一张接不上了,请教大虾们这是什么问题!