国产偷窥熟女精品视频大全1_色男人色天天堂_日韩新片日韩新片网_亚洲欧美福利在线观看

歡迎來到億搜云建站平臺(tái),全網(wǎng)營(yíng)銷云系統(tǒng)加盟中心!

海量企業(yè)網(wǎng)站模板 · 任您選擇

美出特色,精出品質(zhì),一切為了企業(yè)更好的營(yíng)銷

隱藏側(cè)欄
Beta
轉(zhuǎn)載

js 橫向帶停頓圖片滾動(dòng)效果代碼

       滾動(dòng)     2016-02-16     eycms     131     0    

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

<html xmlns="http://www.w.org/1999/xhtml"> 

<head> 

<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 

<title>js 橫向帶停頓圖片滾動(dòng)</title> 

</head> 

<script> 

function Marquee(){ 

this.ID=document.getElementById(arguments[0]); 

this.Direction=arguments[1]; 

this.Step=arguments[2]; 

this.Width=arguments[3]; 

this.Height=arguments[4]; 

this.Timer=arguments[5]; 

this.WaitTime=arguments[6]; 

this.StopTime=arguments[7]; 

if(arguments[8]){this.ScrollStep=arguments[8];}else{this.ScrollStep=this.Direction>1?this.Width:this.Height;} 

this.CTL=this.StartID=this.Stop=this.MouseOver=0; 

this.ID.style.overflowX=this.ID.style.overflowY="hidden"; 

this.ID.noWrap=true; 

this.ID.style.width=this.Width; 

this.ID.style.height=this.Height; 

this.ClientScroll=this.Direction>1?this.ID.scrollWidth:this.ID.scrollHeight; 

this.ID.innerHTML+=this.ID.innerHTML; 

this.Start(this,this.Timer,this.WaitTime,this.StopTime); 

Marquee.prototype.Start=function(msobj,timer,waittime,stoptime){ 

msobj.StartID=function(){msobj.Scroll();} 

msobj.Continue=function(){ 

if(msobj.MouseOver==1){setTimeout(msobj.Continue,waittime);} 

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,waittime);} 

msobj.Begin=function(){ 

msobj.TimerID=setInterval(msobj.StartID,timer); 

msobj.ID.onmouseover=function(){msobj.MouseOver=1; clearInterval(msobj.TimerID);} 

msobj.ID.onmouseout=function(){msobj.MouseOver=0; if(msobj.Stop==0){clearInterval(msobj.TimerID); msobj.TimerID=setInterval(msobj.StartID,timer);}} 

setTimeout(msobj.Begin,stoptime); 

Marquee.prototype.Scroll=function(){ 

switch(this.Direction){ 

case 0: 

this.CTL+=this.Step; 

if(this.CTL>=this.ScrollStep&&this.WaitTime>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.WaitTime>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.WaitTime>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.WaitTime>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> 

<body> 

<nobr> 

<div id="marqueediv8" style="width:760px;height:52px;overflow:hidden;"> 

<img  src="img/001.jpg" width="150" height="50"> 

<img  src="img/002.jpg" width="150" height="50"> 

<img  src="img/003.jpg" width="150" height="50"> 

<img  src="img/004.jpg" width="150" height="50"> 

<img  src="img/005.jpg" width="150" height="50"> 

<img  src="img/001.jpg" width="150" height="50"> 

<img  src="img/002.jpg" width="150" height="50"> 

<img  src="img/003.jpg" width="150" height="50"> 

<img  src="img/004.jpg" width="150" height="50"> 

<img  src="img/005.jpg" width="150" height="50"> 

<img  src="img/001.jpg" width="150" height="50"> 

<img  src="img/002.jpg" width="150" height="50"> 

<img  src="img/003.jpg" width="150" height="50"> 

<img  src="img/004.jpg" width="150" height="50"> 

</div> 

</nobr> 

<script> 

window.onload=function(){ 

new Marquee( 

"marqueediv8", //容器ID<br /> 

2, //向上滾動(dòng)(0向上 1向下 2向左 3向右)<br /> 

20, //滾動(dòng)的步長(zhǎng)<br /> 

760, //容器可視寬度<br /> 

52, //容器可視高度<br /> 

50, //定時(shí)器 數(shù)值越小,滾動(dòng)的速度越快(1000=1秒,建議不小于20)<br /> 

1000, //間歇停頓時(shí)間(0為不停頓,1000=1秒)<br /> 

1000, //開始時(shí)的等待時(shí)間(0為不等待,1000=1秒)<br /> 

152//間歇滾動(dòng)間距(可選)<br /> 

); 

}; 

</script> 

</body> 

</html></td>

 </tr>

</table>


--結(jié)束END--

本文鏈接: http://www.hjcu.cn/resources/roll/1145.html (轉(zhuǎn)載時(shí)請(qǐng)注明來源鏈接)

 
本文標(biāo)簽: 全部

下班PC閱讀不方便?

手機(jī)也可以隨時(shí)學(xué)習(xí)開發(fā)

微信關(guān)注公眾號(hào)“億搜云”
"億搜云平臺(tái)前端開發(fā)教學(xué)"
每日干貨技術(shù)分享
 

×

成為 億搜云平臺(tái) 代理商!

關(guān)注

微信
關(guān)注

微信掃一掃
獲取最新優(yōu)惠信息

億搜云平臺(tái)公眾號(hào)

客服

聯(lián)系
客服

很高興為您服務(wù)
尊敬的用戶,歡迎您咨詢,我們?yōu)樾掠脩魷?zhǔn)備了優(yōu)惠好禮。 咨詢客服

聯(lián)系客服:

在線QQ: 40819446

客服電話: 15250286283

售前咨詢 售后服務(wù)
在線交談 智能小云

工作時(shí)間:

周一至周五: 09:00 - 17:00

WAP

手機(jī)
訪問

移動(dòng)端訪問
手機(jī)上也能選模板

億搜云平臺(tái)手機(jī)端