郁闷!为什么会转着转着就错位了!?

cu88815892 2009-09-01 10:49:00
<script language="javascript">
function Marquee()
{
this.ID = document.getElementById(arguments[0]);
if(!this.ID)
{
alert("您要设置的\"" + arguments[0] + "\"初始化错误\r\n请检查标签ID设置是否正确!");
this.ID = -1;
return;
}
this.Direction = this.Width = this.Height = this.DelayTime = this.WaitTime = this.CTL = this.StartID = this.Stop = this.MouseOver = 0;
this.Step = 1;
this.Timer = 30;
this.DirectionArray = {"top":0 , "up":0 , "bottom":1 , "down":1 , "left":2 , "right":3};
if(typeof arguments[1] == "number" || typeof arguments[1] == "string")this.Direction = arguments[1];
if(typeof arguments[2] == "number")this.Step = arguments[2];
if(typeof arguments[3] == "number")this.Width = arguments[3];
if(typeof arguments[4] == "number")this.Height = arguments[4];
if(typeof arguments[5] == "number")this.Timer = arguments[5];
if(typeof arguments[6] == "number")this.DelayTime = arguments[6];
if(typeof arguments[7] == "number")this.WaitTime = arguments[7];
if(typeof arguments[8] == "number")this.ScrollStep = arguments[8];
this.ID.style.overflow = this.ID.style.overflowX = this.ID.style.overflowY = "hidden";
this.ID.noWrap = true;
this.IsNotOpera = (navigator.userAgent.toLowerCase().indexOf("opera") == -1);
if(arguments.length >= 7)this.Start();
}

Marquee.prototype.Start = function()
{
if(this.ID == -1)return;
if(this.WaitTime < 800)this.WaitTime = 800;
if(this.Timer < 20)this.Timer = 20;
if(this.Width == 0)this.Width = parseInt(this.ID.style.width);
if(this.Height == 0)this.Height = parseInt(this.ID.style.height);
if(typeof this.Direction == "string")this.Direction = this.DirectionArray[this.Direction.toString().toLowerCase()];
this.HalfWidth = Math.round(this.Width / 2);
this.HalfHeight = Math.round(this.Height / 2);
this.BakStep = this.Step;
this.ID.style.width = this.Width + "px";
this.ID.style.height = this.Height + "px";
if(typeof this.ScrollStep != "number")this.ScrollStep = this.Direction > 1 ? this.Width : this.Height;
var templateLeft = " <table cellspacing='0' cellpadding='0' style='border-collapse:collapse;display:inline;'> <tr> <td noWrap=true style='white-space: nowrap;word-break:keep-all;'>MSCLASS_TEMP_HTML </td> <td noWrap=true style='white-space: nowrap;word-break:keep-all;'>MSCLASS_TEMP_HTML </td> </tr> </table>";
var templateTop = " <table cellspacing='0' cellpadding='0' style='border-collapse:collapse;'> <tr> <td>MSCLASS_TEMP_HTML </td> </tr> <tr> <td>MSCLASS_TEMP_HTML </td> </tr> </table>";
var msobj = this;
msobj.tempHTML = msobj.ID.innerHTML;
if(msobj.Direction <= 1)
{
msobj.ID.innerHTML = templateTop.replace(/MSCLASS_TEMP_HTML/g,msobj.ID.innerHTML);
}
else
{
if(msobj.ScrollStep == 0 && msobj.DelayTime == 0)
{
msobj.ID.innerHTML += msobj.ID.innerHTML;
}
else
{
msobj.ID.innerHTML = templateLeft.replace(/MSCLASS_TEMP_HTML/g,msobj.ID.innerHTML);
}
}
var timer = this.Timer;
var delaytime = this.DelayTime;
var waittime = this.WaitTime;
msobj.StartID = function(){msobj.Scroll()}
msobj.Continue = function()
{
if(msobj.MouseOver == 1)
{
setTimeout(msobj.Continue,delaytime);
}
else
{ clearInterval(msobj.TimerID);
msobj.CTL = msobj.Stop = 0;
msobj.TimerID = setInterval(msobj.StartID,timer);
}
}

msobj.Pause = function()
{
msobj.Stop = 1;
clearInterval(msobj.TimerID);
setTimeout(msobj.Continue,delaytime);
}

msobj.Begin = function()
{
msobj.ClientScroll = msobj.Direction > 1 ? msobj.ID.scrollWidth / 2 : msobj.ID.scrollHeight / 2;
if((msobj.Direction <= 1 && msobj.ClientScroll <= msobj.Height + msobj.Step) || (msobj.Direction > 1 && msobj.ClientScroll <= msobj.Width + msobj.Step)) {
msobj.ID.innerHTML = msobj.tempHTML;
delete(msobj.tempHTML);
return;
}
delete(msobj.tempHTML);
msobj.TimerID = setInterval(msobj.StartID,timer);
if(msobj.ScrollStep < 0)return;
msobj.ID.onmousemove = function(event)
{
if(msobj.ScrollStep == 0 && msobj.Direction > 1)
{
var event = event || window.event;
if(window.event)
{
if(msobj.IsNotOpera)
{
msobj.EventLeft = event.srcElement.id == msobj.ID.id ? event.offsetX - msobj.ID.scrollLeft : event.srcElement.offsetLeft - msobj.ID.scrollLeft + event.offsetX;
}
else
{
msobj.ScrollStep = null;
return;
}
}
else
{
msobj.EventLeft = event.layerX - msobj.ID.scrollLeft;
}
msobj.Direction = msobj.EventLeft > msobj.HalfWidth ? 3 : 2;
msobj.AbsCenter = Math.abs(msobj.HalfWidth - msobj.EventLeft);
msobj.Step = Math.round(msobj.AbsCenter * (msobj.BakStep*2) / msobj.HalfWidth);
}
}
msobj.ID.onmouseover = function()
{
if(msobj.ScrollStep == 0)return;
msobj.MouseOver = 1;
clearInterval(msobj.TimerID);
}
msobj.ID.onmouseout = function()
{
if(msobj.ScrollStep == 0)
{
if(msobj.Step == 0)msobj.Step = 1;
return;
}
msobj.MouseOver = 0;
if(msobj.Stop == 0)
{
clearInterval(msobj.TimerID);
msobj.TimerID = setInterval(msobj.StartID,timer);
}
}
}
setTimeout(msobj.Begin,waittime);
}

Marquee.prototype.Scroll = function()
{
switch(this.Direction)
{
case 0:
this.CTL += this.Step;
if(this.CTL >= this.ScrollStep && this.DelayTime > 0)
{
this.ID.scrollTop += this.ScrollStep + this.Step - this.CTL;
this.Pause();
return;
}
else
{
if(this.ID.scrollTop >= this.ClientScroll)
{
this.ID.scrollTop -= this.ClientScroll;
}
this.ID.scrollTop += this.Step;
}
break;

case 1:
this.CTL += this.Step;
if(this.CTL >= this.ScrollStep && this.DelayTime > 0)
{
this.ID.scrollTop -= this.ScrollStep + this.Step - this.CTL;
this.Pause();
return;
}
else
{
if(this.ID.scrollTop <= 0)
{
this.ID.scrollTop += this.ClientScroll;
}
this.ID.scrollTop -= this.Step;
}
break;

case 2:
this.CTL += this.Step;
if(this.CTL >= this.ScrollStep && this.DelayTime > 0)
{
this.ID.scrollLeft += this.ScrollStep + this.Step - this.CTL;
this.Pause();
return;
}
else
{
if(this.ID.scrollLeft >= this.ClientScroll)
{
this.ID.scrollLeft -= this.ClientScroll;
}
this.ID.scrollLeft += this.Step;
}
break;

case 3:
this.CTL += this.Step;
if(this.CTL >= this.ScrollStep && this.DelayTime > 0)
{
this.ID.scrollLeft -= this.ScrollStep + this.Step - this.CTL;
this.Pause();
return;
}
else
{
if(this.ID.scrollLeft <= 0)
{
this.ID.scrollLeft += this.ClientScroll;
}
this.ID.scrollLeft -= this.Step;
}
break;
}
}
</script>
<div id="marqueediv1" style="width:760px;height:52px;overflow:hidden;">
<table width="740" height="156" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="51" align="center" valign="middle">
<p><img src="http://www.popub.net/script/images/yaode.gif" width="140" height="40" border="0" hspace="1">
<img src="http://www.popub.net/script/images/qtrjczh.gif" width="140" height="40" border="0" hspace="1">
<img src="http://www.popub.net/script/images/gucang.gif" width="140" height="40" border="0" hspace="1">
<img src="http://www.popub.net/script/images/bmfd.gif" width="140" height="40" border="0" hspace="1"></p>
</td>
</tr>
<tr>
<td height="63" align="center" valign="middle">
<p><img src="http://www.popub.net/script/images/guangming.gif" width="140" height="40" border="0" hspace="1"><img src="http://www.popub.net/script/images/liangan.gif" width="140" height="40" border="0" hspace="1"><img src="http://www.popub.net/script/images/klk.gif" width="140" height="40" border="0" hspace="1">
<img src="http://www.popub.net/script/images/klk.gif" width="140" height="40" border="0" hspace="1"></p>
</td>
</tr>
<tr>
<td height="40" align="center" valign="middle"><img src="http://www.popub.net/script/images/yaode.gif" width="140" height="40" border="0" hspace="1">
<img src="http://www.popub.net/script/images/qtrjczh.gif" width="140" height="40" border="0" hspace="1">
<img src="http://www.popub.net/script/images/gucang.gif" width="140" height="40" border="0" hspace="1">
<img src="http://www.popub.net/script/images/bmfd.gif" width="140" height="40" border="0" hspace="1"></td>
</tr>
</table>
</div>
<script defer>
new Marquee("marqueediv1",0,1,760,52,50,4000,500)

</script>
...全文
74 2 打赏 收藏 转发到动态 举报
写回复
用AI写文章
2 条回复
切换为时间正序
请发表友善的回复…
发表回复
cu88815892 2009-09-01
  • 打赏
  • 举报
回复
0 0!!!没啊!看他转4个来回就开始位置不对了!开始可以后面就越来越错位了!
dalongleng 2009-09-01
  • 打赏
  • 举报
回复
浏览器的事情,你用的是什么版本的浏览器?换IE7试试
驱动人生2013官网下载软件简介 驱动人生2013是一款优秀的硬件驱动管理软件,驱动人生2013具备强大的硬件识别能力和最佳驱动匹配和安装功能,本站提供驱动人生2013官网下载。 5.2.47.253更新说明: 1、修改了软件的匹配规则,解决已安装软件的检测错误 2、修改了硬件模块启动顺序 驱动人生5.2.46.252更新内容: 1、修改热门软件显示方式 2、硬件检测增加微博分享功能 驱动人生5.2.45.251最新更新: 1、完美支持Windows 8.1预览版 2、完美支持Server 2012 R2 www.eiuei.com预览版 更新日志:2.4.30.222版 [2013-05-31] 1、修复桌面没有快捷图标时,会自动在桌面上创建快捷图标的错误 2、修复软件在升级的同时正在下载皮肤会造成人生日历崩溃的问题 3、修复动态皮肤显示不准确的问题 更新日志:5.2.42.246 [2013-05-15] 1、优化品牌信息检测使结果更精确 2、修复Wifi共享不保存用户密码的问题 更新日志:5.2.41.245 [2013-05-10] 1、Wifi共享设置支持拨号上网 2、优化驱动卸载流程 更新日志:5.2.40.242[2013-4-26] 1、优化WiFi共享功能 2、增加对新CPU型号检测支持 更新日志:5.2.39.240版:[2013-04-12] 1、新增Wifi共享功能,手机免费上Wifi 2、修改界面图标无法获取的情况 3、修改热门软件为下载后直接启动安装 更新日志:5.2.37.236版 [2013-3-21] 1、解决部分修改版操作系统下的程序运行错误 2、优化异常操作时的正常升级流程 更新日志:5.2.36.234版 [2013-3-8] 1、修复特定环境下硬件检测信息空白现象 2、优化程序的系统资源占用 3、解决XP SP2下AMD驱动安装蓝屏 4、解决备份列表时间顺序错位现象 联想U410联想U510联想V490联想V580联想Y400联想Y480联想Y485联想Y500索尼LT28h三星I9050三星I699尼康D7100

28,406

社区成员

发帖
与我相关
我的任务
社区描述
ASP即Active Server Pages,是Microsoft公司开发的服务器端脚本环境。
社区管理员
  • ASP
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧