代碼:
程式碼
<!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>
</頭>
<正文>
<腳本類型=文字/javascript>
var $ = 函數(id){
返回“字串”== typeof id ? document.getElementById(id) : id;
};
var 類別 = {
建立:函數(){
返回函數(){
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 = {
初始化:函數(idScroller,idScrollMid,選項){
var oThis = this, oScroller = $(idScroller), oScrollMid = $(idScrollMid);
this.SetOptions(選項);
this.Side = this.options.Side || ["up"];//方向
this.scroller = oScroller; //物件
this.speed = this.options.Speed; //速度
this.timer = null; //時間
this.pauseHeight = 0; //定高
this.pauseWidth = 0; //訂寬
這個.暫停= 0; //設定高(寬)
這個邊= 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 = {//預設值
Step: 1,//每次變化的px量
Speed: 20,//速度(越大越慢)
Side: ["up"],//滾動方向:"up"是上,"down"是下,"left"是左,"right"是右
PauseHeight: 0,//隔多高停一次
PauseWidth: 0,//隔多寬停一次
//當上下和左右一起使用時必須設定PauseHeight和PauseWidth來設定轉向位置
PauseStep: 1000//停頓時間(PauseHeight或PauseWidth大於0此參數才有效)
};
Object.extend(this.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;
var oThis = this;
this.timer = window.setTimeout(function(){ oThis.Start(); }, this.speed);
},
//左右滾動
向左滾動:函數(){
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;
this.timer = window.setTimeout(function(){ oThis.Start(); }, this.speed);
},
//取得設定滾動數據
GetScroll:函數(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;
}
}
return (iScroll + iStep);
},
//開始
Start: function() {
//document.getElementById("test").innerHTML+=sTurn+",";
//方向設定
開關 (this.Side[0].toLowerCase()) {
案例“右”:
if(this.widthList < this.widthScroller) 回傳;
this.side = -1;
this.ScrollLeftRight();
休息;
案例“左”:
if(this.widthList < this.widthScroller) 回傳;
這個.side = 1;
this.ScrollLeftRight();
休息;
案例「向下」:
if(this.heightList < this.heightScroller) 回傳;
this.side = -1;
this.ScrollUpDown();
休息;
案例“向上”:
預設 :
if(this.heightList < this.heightScroller) 回傳;
這個.side = 1;
this.ScrollUpDown();
}
},
//停止
停止:函數(){
清除超時(this.timer);
}
};
</腳本>
<樣式>
.Scroller {行高:50px;邊框:1px實心#000000;內邊距:0px 10px;高度:50px;寬度:400px;}
.Scroller *{邊距:0px;填充:0px;}
.ScrollMid {浮動:左;}
.ScrollMid ul{寬度:800px;浮動:左;}
.ScrollMid li{list-style:none;浮動:左;寬度:390px;左內邊距:10px;行高:50px; }
</STYLE>
<DIV class=Scroller id=idScroller>
<DIV 樣式=“寬度:1600 像素”>
<DIV 類別=ScrollMid id=idScrollMid>
<UL>
<LI>順德於1993年獲準為廣東省綜合改革主題。
<LI>2006年順德成為第一個GDP超過千億的縣級行政單位。
<LI>2000至2003年順德均在中國百強縣排名中位居榜首。
<LI>2005年順德實現國內生產毛額856.11億元。
<腳本>
new Scroller("idScroller", "idScrollMid",{ Side:["up","left"], PauseHeight:50, PauseWidth:400 });
</腳本>
</正文>
</html>