السبب:
هذا هو الحال
<!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 ">
<الرأس>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>JavaScript 无缝上下左右滚动加定高定宽停顿效果(兼容ie/ff)</title>
</الرأس>
<الجسم>
<نوع البرنامج النصي = نص/جافا سكريبت>
فار $ = الوظيفة (المعرف) {
إرجاع "سلسلة" == معرف نوع؟ document.getElementById(id): id;
};
فئة فار = {
إنشاء: وظيفة () {
وظيفة العودة () {
this.initialize.apply(this,حجج);
}
}
}
Object.extend = وظيفة (الوجهة، المصدر) {
لـ (خاصية var في المصدر) {
الوجهة[الخاصية] = المصدر[الخاصية];
}
وجهة العودة؛
}
وظيفة addEventHandler(oTarget, sEventType, fnHandler) {
إذا (oTarget.addEventListener) {
oTarget.addEventListener(sEventType, fnHandler, false);
} وإلا إذا (oTarget.attachEvent) {
oTarget.attachEvent("on" + sEventType, fnHandler);
} آخر {
oTarget["on" + sEventType] = fnHandler;
}
};
var Scroller = Class.create();
Scroller.prototype = {
التهيئة: الوظيفة (idScroller، idScrollMid، options) {
var oThis = this, oScroller = $(idScroller), oScrollMid = $(idScrollMid);
this.SetOptions(options);
this.Side = this.options.Side || ["up"];//المصدر
this.scroller = oScroller; //对象
this.speed = this.options.Speed; // 速度
this.timer = null; //الصفحة الرئيسية
this.pauseHeight = 0; //定高
this.pauseWidth = 0; //定宽
this.pause = 0; //定高(宽)
this.side = 0; //参数
//用于上下滚动
this.heightScroller = parseInt(oScroller.style.height) || oScroller.offsetHeight;
this.heightList = oScrollMid.offsetHeight;
// 用于左右滚动
this.widthScroller = parseInt(oScroller.style.width) || oScroller.offsetWidth;
this.widthList = oScrollMid.offsetWidth;
// js قم بتحديد الارتفاع والعرض في ملف css
oScroller.style.overflow = "hidden";
oScrollMid.appendChild(oScrollMid.cloneNode(true));
oScrollMid.appendChild(oScrollMid.cloneNode(true));
addEventHandler(oScroller, "mouseover", function() { oThis.Stop(); });
addEventHandler(oScroller, "mouseout", function() { oThis.Start(); });
this.Start();
},
//设置默认属性
خيارات الضبط: الوظيفة (خيارات) {
this.options = {// اختر الخيار
الخطوة: 1،//البدء في صنع بكسل
السرعة: 20 // 速度(越大越慢)
Side: ["up"],//滚动方向:"up"是上،"down"是下،"left"是左،"right"是右
ارتفاع الإيقاف المؤقت: 0,// 隔多高停一次
عرض الإيقاف المؤقت: 0,// 多宽停一次
// قم بتحديد ارتفاع الإيقاف المؤقت وعرض الإيقاف المؤقت لعرض الإيقاف المؤقت
PauseStep: 1000//停顿时间 (PauseHeight أو PauseWidth هو 0该参数才有效)
};
Object.extend(this.options, options || {});
},
//转向
بدوره: وظيفة () {
//الحصول على أفضل النتائج
this.Side.push(this.Side.shift().toLowerCase());
},
// 上下滚动
التمرير للأسفل: الوظيفة () {
this.pause = this.pauseHeight;
this.scroller.scrollTop = this.GetScroll(this.scroller.scrollTop, this.heightScroller, this.heightList, this.options.PauseHeight);
this.pauseHeight = this.pause;
فار oThis = هذا؛
this.timer = window.setTimeout(function(){ oThis.Start(); }, this.speed);
},
//左右滚动
التمرير لليسار: الوظيفة () {
this.pause = this.pauseWidth;
// الخيار: التمرير لليسار 1400 نقطة إلى 1400 نقطة إلى 1400 نقطة
this.scroller.scrollLeft = this.GetScroll(this.scroller.scrollLeft, this.widthScroller, this.widthList, this.options.PauseWidth);
this.pauseWidth = this.pause;
فار oThis = هذا؛
this.timer = window.setTimeout(function(){ oThis.Start(); }, this.speed);
},
//الحصول على أفضل النتائج
GetScroll: وظيفة (iScroll، iScroller، iList، iPause) {
var iStep = this.options.Step * this.side;
إذا(هذا.الجانب > 0){
if(iScroll >= (iList * 2 - iScroller)){ iScroll -= iList; }
} آخر {
if(iScroll <= 0){ iScroll += iList; }
}
this.speed = this.options.Speed;
إذا(إيباوز > 0){
إذا(Math.abs(this.pause) >= iPause){
this.speed = this.options.PauseStep; this.pause = iStep = 0; this.Turn();
} آخر {
this.pause += iStep;
}
}
return (iScroll + iStep);
},
//开始
البداية: function() {
//document.getElementById("test").innerHTML+=sTurn+"،";
// 向设置
التبديل (this.Side[0].toLowerCase()) {
حالة "الحق" :
if(this.widthList < this.widthScroller) return;
this.side = -1;
this.ScrollLeftRight();
استراحة؛
حالة "اليسار":
if(this.widthList < this.widthScroller) return;
this.side = 1;
this.ScrollLeftRight();
استراحة؛
حالة "أسفل":
if(this.heightList < this.heightScroller) return;
this.side = -1;
this.ScrollUpDown();
استراحة؛
حالة "أعلى":
تقصير :
if(this.heightList < this.heightScroller) return;
this.side = 1;
this.ScrollUpDown();
}
},
//停止
توقف: وظيفة () {
ClearTimeout(this.timer);
}
};
</SCRIPT>
<STYLE>
سكرولر {ارتفاع الخط: 50 بكسل؛ الحدود: 1 بكسل الصلبة #000000؛ الحشو: 0px 10px؛ الارتفاع: 50 بكسل؛ العرض: 400 بكسل؛}
.Scroller *{margin:0px; الحشو:0px;}
.ScrollMid {float:left;}
.ScrollMid ul{width:800px;float:left;}
.ScrollMid li{list-style:none; تعويم: يسار؛ العرض: 390 بكسل؛ الحشو على اليسار: 10 بكسل; ارتفاع الخط: 50 بكسل; }
</STYLE>
<DIV class=Scroller id=idScroller>
<DIV style="WIDTH: 1600px">
<DIV class=ScrollMid id=idScrollMid>
<أول>
<LI> تم إطلاق سراح عام 1993 في عام 1993. </LI>
<LI>يبلغ إجمالي الناتج المحلي الإجمالي لعام 2006 حوالي 1000 دولار أمريكي. </LI>
<LI>2000 في عام 2003، كان من المقرر أن يكون قد تم إصداره في عام 2003. </LI>
<LI>2005年顺德实现国内生产总856.11亿元. </LI></UL></DIV></DIV></DIV>
<النص>
new Scroller("idScroller"، "idScrollMid"،{ Side:["up"، "left"]، PauseHeight:50، PauseWidth:400 });
</النص>
</الجسم>
</html>