代码:
程序代码
<!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 유형=텍스트/자바스크립트>
var $ = 함수(id) {
return "string" == ID 유형 ? document.getElementById(id) : id;
};
var 클래스 = {
생성: 함수() {
반환 함수() {
this.initialize.apply(this, 인수);
}
}
}
Object.extend = function(대상, 소스) {
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, 옵션) {
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 = parsInt(oScroller.style.height) || oScroller.offsetHeight;
this.heightList = oScrollMid.offsetHeight;
//사용于左右滚动
this.widthScroller = parsInt(oScroller.style.width) || oScroller.offsetWidth;
this.widthList = oScrollMid.offsetWidth;
//js는 불가능합니다.css设置의 높이와 너비
oScroller.style.overflow = "숨겨짐";
oScrollMid.appendChild(oScrollMid.cloneNode(true));
oScrollMid.appendChild(oScrollMid.cloneNode(true));
addEventHandler(oScroller, "mouseover", function() { oThis.Stop(); });
addEventHandler(oScroller, "mouseout", function() { oThis.Start(); });
this.Start();
},
//设置默认属性
SetOptions: 함수(옵션) {
this.options = {//默认值
단계: 1,//每次变化적 pxweight
속도: 20,//速道(越大越慢)
Side: ["위"],//滚动方向:"위"是上,"아래"是下,"왼쪽"是左,"오른쪽"是右
PauseHeight: 0,//더욱 高停一次
PauseWidth: 0,//더 많은 크기
//当上下와 左右一起使用时必须设置PauseHeight와 PauseWidth来设置转向位置
PauseStep: 1000//停顿时间(PauseHeight或PauseWidth大于0该参数才有效)
};
Object.extend(this.options, 옵션 || {});
},
//转向
차례: function() {
//통합적 排列来转向
this.Side.push(this.Side.shift().toLowerCase());
},
//上下滚动
ScrollUpDown: 함수() {
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: 함수() {
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: 함수(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+",";
//方向设置
스위치(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>
<스타일>
.스크롤러 {라인 높이:50px; 테두리:1px 솔리드 #000000; 패딩:0px 10px; 높이:50px; 너비:400px;}
.스크롤러 *{margin:0px; 패딩:0px;}
.ScrollMid {float:왼쪽;}
.ScrollMid ul{width:800px;float:left;}
.ScrollMid li{list-style:none; 부동:왼쪽; 너비:390px; 패딩 왼쪽:10px;줄 높이:50px; }
</STYLE>
<DIV class=Scroller id=idScroller>
<DIV 스타일="너비: 1600px">
<DIV 클래스=ScrollMid id=idScrollMid>
<UL>
<LI>顺德于1993年被批准为广东省综合改革试点. </LI>
<LI>2006년에는 GDP가 1,000만 달러에 달하는 2006년의 顺德成이 1000만 달러를 달성했습니다. </LI>
<LI>2000년에서 2003년까지 중국에서 百强县排name中位居榜首。 </LI>
<LI>2005年顺德实现國内生产总值856.11亿元。 </LI></UL></DIV></DIV></DIV>
<스크립트>
new Scroller("idScroller", "idScrollMid",{ Side:["up","left"], PauseHeight:50, PauseWidth:400 });
</SCRIPT>
</body>
</html>