代:
程序代
<!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>
</head>
<本文>
<SCRIPT type=text/javascript>
var $ = 関数 (id) {
return "string" == ID の種類 ? document.getElementById(id) : id;
};
var クラス = {
作成: function() {
戻り関数() {
this.initialize.apply(this, 引数);
}
}
}
Object.extend = 関数(宛先, ソース) {
for (ソース内の var プロパティ) {
宛先[プロパティ] = ソース[プロパティ];
}
返送先。
}
関数 addEventHandler(oTarget, sEventType, fnHandler) {
if (oTarget.addEventListener) {
oTarget.addEventListener(sEventType, fnHandler, false);
else if (oTarget.attachEvent) {
oTarget.attachEvent("on" + sEventType, fnHandler);
} それ以外 {
oTarget["on" + sEventType] = fnHandler;
}
};
var Scroller = Class.create();
Scroller.prototype = {
初期化: function(idScroller, idScrollMid, options) {
var oThis = this、oScroller = $(idScroller)、oScrollMid = $(idScrollMid);
this.SetOptions(オプション);
this.Side = this.options.Side || ["上"];// 方向
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, "マウスオーバー", function() { oThis.Stop(); });
addEventHandler(oScroller, "mouseout", function() { oThis.Start(); });
this.Start();
}、
// 設定プロパティ
SetOptions: 関数(オプション) {
this.options = {//默认值
ステップ: 1,//次回変更されるピクセル量
速度: 20,//速度(越大越ゆっくり)
Side: ["up"],//滚動方向:"up" が上、"down" が下、"left" が左、"right" が右
PauseHeight: 0,//間隔多高停止一回
PauseWidth: 0,//間隔多宽停止一回
// 上下左右同時に使用する場合は、PauseHeight と PauseWidth を設定して、方向の位置を設定する必要があります
PauseStep: 1000//停止時間(PauseHeight または PauseWidth が 0 より大きいパラメータ数才有效)
};
Object.extend(this.options, オプション || {});
}、
//转向
ターン: function() {
// 設置方向の数組の配列によって转方向に来る
this.Side.push(this.Side.shift().toLowerCase());
}、
//上下動
スクロールアップダウン: function() {
this.pause = this.pauseHeight;
this.scroller.scrollTop = this.GetScroll(this.scroller.scrollTop, this.heightScroller, this.heightList, this.options.PauseHeight);
this.pauseHeight = this.pause;
var oThis = これ;
this.timer = window.setTimeout(function(){ oThis.Start(); }, this.speed);
}、
//左右動
ScrollLeftRight: function() {
this.pause = this.pauseWidth;
//注意:scrollLeft超过1400会自动变回1400注意长度
this.scroller.scrollLeft = this.GetScroll(this.scroller.scrollLeft, this.widthScroller, this.widthList, this.options.PauseWidth);
this.pauseWidth = this.pause;
var oThis = これ;
this.timer = window.setTimeout(function(){ oThis.Start(); }, this.speed);
}、
//获取設置置動データ
GetScroll: function(iScroll, iScroller, iList, iPause) {
var iStep = this.options.Step * this.side;
if(this.side > 0){
if(iScroll >= (iList * 2 - iScroller)){ iScroll -= iList; }
} それ以外 {
if(iScroll <= 0){ iScroll += iList; }
this.speed
= this.options.Speed;
if(iPause > 0){
if(Math.abs(this.pause) >= iPause){
this.speed = this.options.PauseStep; this.pause = iStep = 0; this.Turn();
} それ以外 {
this.pause += iStep;
}
戻り値 (iScroll + iStep)
;
}、
//始まり
開始: function() {
//document.getElementById("test").innerHTML+=sTurn+",";
// 方向設定
switch (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();
}
}、
// 停止
停止: function() {
clearTimeout(this.timer);
}
};
</SCRIPT>
<スタイル>
.Scroller {line-height:50px;ボーダー:1px ソリッド #000000;パディング:0px 10px;高さ:50ピクセル;幅:400ピクセル;}
.Scroller *{margin:0px;パディング:0px;}
.ScrollMid {float:left;}
.ScrollMid ul{幅:800px;float:left;}
.ScrollMid li{リストスタイル:なし;フロート:左;幅:390ピクセル;パディング左:10ピクセル;行の高さ:50ピクセル; }
</STYLE>
<DIV class=Scroller id=idScroller>
<DIV スタイル="幅: 1600px">
<DIV クラス=ScrollMid id=idScrollMid>
<UL>
<LI> 1993 年に、改革の取り組みを省力化するために承認されました。
<LI>2006 年には、GDP が 1,000 を超えた最高レベルの行政単位となりました。
<LI>2000 年から 2003 年にかけては、いずれも中国百强排名中位の座にありました。 </LI>
<LI>2005 年に国内生産合計値 856.11 単位が実現されました。 </LI></UL></DIV></DIV></DIV>
<スクリプト>
new Scroller("idScroller", "idScrollMid",{ Side:["up","left"], PauseHeight:50, PauseWidth:400 });
</スクリプト>
</body>
</html>