JS无缝滚动的问题,求高人解答一下
是一个文字无缝向上滚动,在IE6下面第二圈的时候歪了,请问是怎么回事啊,代码如下<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transi...
是一个文字无缝向上滚动,在IE6下面第二圈的时候歪了,请问是怎么回事啊,代码如下
<!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=gb2312" />
<title>文字列表无缝向上滚动JavaScript代码</title>
</head>
<body>
<style>
*{margin:0px;padding:0px;border:0px;}
body{font-size:12px}
#demo11{
height:auto;
text-align:left;
}
#demo22{
height:auto;
text-align:left;
}
#demo11 li{
list-style-type:none;
height:25px;
text-align:left;
}
#demo22 li{
list-style-type:none;
height:25px;
text-align:left;
}
.red11{ color:#900; font-weight:bold;}
</style>
<div style="padding-top:30px; padding-left:14px; height:182px;">
<div id="demo01" style="overflow:hidden;height:150px;width:310px;text-align:left;">
<ul id="demo11">
<li>但弗格森的分公司的告诉对风格</li>
<li>但弗格森的分公司的告诉对风格</li>
<li>但弗格森的分公司的告诉对风格</li>
<li>但弗格森的分公司的告诉对风格</li>
<li>但弗格森的分公司的告诉对风格</li>
<li>但弗格森的分公司的告诉对风格</li>
<li>但弗格森的分公司的告诉对风格</li>
<li>但弗格森的分公司的告诉对风格</li>
<li>但弗格森的分公司的告诉对风格</li>
</ul>
<div id="demo22"></div>
</div> </div>
<script>
var speed=60
var demo01=document.getElementById("demo01");
var demo22=document.getElementById("demo22");
var demo11=document.getElementById("demo11");
demo22.innerHTML=demo11.innerHTML
function Marquee(){
if(demo22.offsetTop-demo01.scrollTop<=0)
demo01.scrollTop-=demo11.offsetHeight
else{
demo01.scrollTop++
}
}
var MyMar=setInterval(Marquee,speed)
demo01.onmouseover=function() {clearInterval(MyMar)}
demo01.onmouseout=function() {MyMar=setInterval(Marquee,speed)}
</script>
</body>
</html> 展开
<!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=gb2312" />
<title>文字列表无缝向上滚动JavaScript代码</title>
</head>
<body>
<style>
*{margin:0px;padding:0px;border:0px;}
body{font-size:12px}
#demo11{
height:auto;
text-align:left;
}
#demo22{
height:auto;
text-align:left;
}
#demo11 li{
list-style-type:none;
height:25px;
text-align:left;
}
#demo22 li{
list-style-type:none;
height:25px;
text-align:left;
}
.red11{ color:#900; font-weight:bold;}
</style>
<div style="padding-top:30px; padding-left:14px; height:182px;">
<div id="demo01" style="overflow:hidden;height:150px;width:310px;text-align:left;">
<ul id="demo11">
<li>但弗格森的分公司的告诉对风格</li>
<li>但弗格森的分公司的告诉对风格</li>
<li>但弗格森的分公司的告诉对风格</li>
<li>但弗格森的分公司的告诉对风格</li>
<li>但弗格森的分公司的告诉对风格</li>
<li>但弗格森的分公司的告诉对风格</li>
<li>但弗格森的分公司的告诉对风格</li>
<li>但弗格森的分公司的告诉对风格</li>
<li>但弗格森的分公司的告诉对风格</li>
</ul>
<div id="demo22"></div>
</div> </div>
<script>
var speed=60
var demo01=document.getElementById("demo01");
var demo22=document.getElementById("demo22");
var demo11=document.getElementById("demo11");
demo22.innerHTML=demo11.innerHTML
function Marquee(){
if(demo22.offsetTop-demo01.scrollTop<=0)
demo01.scrollTop-=demo11.offsetHeight
else{
demo01.scrollTop++
}
}
var MyMar=setInterval(Marquee,speed)
demo01.onmouseover=function() {clearInterval(MyMar)}
demo01.onmouseout=function() {MyMar=setInterval(Marquee,speed)}
</script>
</body>
</html> 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询