Horizontal sliding picture 2
Recommended for you: Get network issues from WhatsUp Gold. Not end users.
The online download, slightly changed, the specific path to forget
1)The style file 16sucai_com.css
.rollBox{width:520px;overflow:hidden;margin:0 auto;} .rollBox .Cont{width:520px;overflow:hidden;margin:0 auto;padding-top:20px;} .rollBox .ScrCont{width:10000000px;} .rollBox .Cont .pic{width:130px;float:left;text-align:center;} *+html .rollBox .Cont .pic{width:130px;float:left;text-align:center;} .rollBox .Cont .pic img{padding:4px;background:#fff;border:1px solid #ccc;display:block;margin:0 auto; width: 120px; } .rollBox .Cont .pic p{line-height:26px;color:#505050;} .rollBox .Cont a:link,.rollBox .Cont a:visited{color:#626466;text-decoration:none;} .rollBox .Cont a:hover{color:#f00;text-decoration:underline;} .rollBox #List1,.rollBox #List2{float:left;}
2) Page index.html
<!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"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>Click the control picture scroll around the JS code - class material net</title> </head> <link href="Images/16sucai_com.css" rel="stylesheet" type="text/css" /> <body> <div class="rollBox"> <img onmousedown="ISL_GoDown()" onmouseup="ISL_StopDown()" onmouseout="ISL_StopDown()" class="img1" src="images/shqm_right_pic.gif" width="12" height="31" /> <div class="Cont" id="ISL_Cont"> <div class="ScrCont"> <div id="List1"> <!-- begin -- picture list> <div class="pic"> <a href="#" target="_blank"><img src="images/show_1.jpg" width="130" height="95" /></a> <a href="#" target="_blank">Product picture browsing 001</a> </div> <div class="pic"> <a href="#" target="_blank"><img src="images/show_1.jpg" width="130" height="95" /></a> <a href="#" target="_blank">Product picture browsing 002</a> </div> <div class="pic"> <a href="#" target="_blank"><img src="images/show_1.jpg" width="130" height="95" /></a> <a href="#" target="_blank">Product picture browsing 003</a> </div> <div class="pic"> <a href="#" target="_blank"><img src="images/show_1.jpg" width="130" height="95" /></a> <a href="#" target="_blank">Product picture browsing 004</a> </div> <div class="pic"> <a href="#" target="_blank"><img src="images/show_1.jpg" width="130" height="95" /></a> <a href="#" target="_blank">Product picture browsing 005</a> </div> <div class="pic"> <a href="#" target="_blank"><img src="images/show_1.jpg" width="130" height="95" /></a> <a href="#" target="_blank">Product picture browsing 006</a> </div> <div class="pic"> <a href="#" target="_blank"><img src="images/show_1.jpg" width="130" height="95" /></a> <a href="#" target="_blank">Product picture browsing 007</a> </div> <div class="pic"> <a href="#" target="_blank"><img src="images/show_1.jpg" width="130" height="95" /></a> <a href="#" target="_blank">Product picture browsing 008</a> </div> <div class="pic"> <a href="#" target="_blank"><img src="images/show_1.jpg" width="130" height="95" /></a> <a href="#" target="_blank">Product picture browsing 009</a> </div> <div class="pic"> <a href="#" target="_blank"><img src="images/show_1.jpg" width="130" height="95" /></a> <a href="#" target="_blank">Product picture browsing 010</a> </div> <div class="pic"> <a href="#" target="_blank"><img src="images/show_1.jpg" width="130" height="95" /></a> <a href="#" target="_blank">Product picture browsing 011</a> </div> <div class="pic"> <a href="#" target="_blank"><img src="images/show_1.jpg" width="130" height="95" /></a> <a href="#" target="_blank">Product picture browsing 012</a> </div> <!-- end -- picture list> </div> <div id="List2"></div> </div> </div> <img onmousedown="ISL_GoUp()" onmouseup="ISL_StopUp()" onmouseout="ISL_StopUp()" class="img2" src="images/shqm_left_pic.gif" width="12" height="31" /> </div> <p style="text-align:center;">Code finishing: <a href="http://www.16sucai.com/" target="_blank">The first-class material net</a></p> <p style="text-align:center;">*Respect others work achievement, reprint please indicate the source! Note: this code is for learning, not for commercial purposes. </p> <p></p> <script language="javascript" type="text/javascript"> <!--//--><![CDATA[//><!-- //The picture scroll the list of Mengjia 070816 var Speed = 10; //Speed (MS) var Space = 10; //Every time you move(px) var PageWidth =130*4; //Page width var fill = 0; //The overall shift var MoveLock = false; var MoveTimeObj; var Comp = 0; var AutoPlayObj = null; GetObj("List2").innerHTML = GetObj("List1").innerHTML; GetObj('ISL_Cont').scrollLeft = fill; GetObj("ISL_Cont").onmouseover = function(){clearInterval(AutoPlayObj);} GetObj("ISL_Cont").onmouseout = function(){AutoPlay();} AutoPlay(); function GetObj(objName){if(document.getElementById){return eval('document.getElementById("'+objName+'")')}else{return eval ('document.all.'+objName)}} function AutoPlay(){ //Auto scroll clearInterval(AutoPlayObj); AutoPlayObj = setInterval('ISL_GoDown();ISL_StopDown();',5000); //Interval time } function ISL_GoUp(){ //Turn to if(MoveLock) return; clearInterval(AutoPlayObj); MoveLock = true; MoveTimeObj = setInterval('ISL_ScrUp();',Speed); } function ISL_StopUp(){ //Turn stop clearInterval(MoveTimeObj); if(GetObj('ISL_Cont').scrollLeft % PageWidth - fill != 0){ Comp = fill - (GetObj('ISL_Cont').scrollLeft % PageWidth); CompScr(); }else{ MoveLock = false; } AutoPlay(); } function ISL_ScrUp(){ //On the turn action if(GetObj('ISL_Cont').scrollLeft <= 0){GetObj('ISL_Cont').scrollLeft = GetObj ('ISL_Cont').scrollLeft + GetObj('List1').offsetWidth} GetObj('ISL_Cont').scrollLeft -= Space ; } function ISL_GoDown(){ //Under the double clearInterval(MoveTimeObj); if(MoveLock) return; clearInterval(AutoPlayObj); MoveLock = true; ISL_ScrDown(); MoveTimeObj = setInterval('ISL_ScrDown()',Speed); } function ISL_StopDown(){ //Under the double stop clearInterval(MoveTimeObj); if(GetObj('ISL_Cont').scrollLeft % PageWidth - fill != 0 ){ Comp = PageWidth - GetObj('ISL_Cont').scrollLeft % PageWidth + fill; CompScr(); }else{ MoveLock = false; } AutoPlay(); } function ISL_ScrDown(){ //Under the double action if(GetObj('ISL_Cont').scrollLeft >= GetObj('List1').scrollWidth){GetObj('ISL_Cont').scrollLeft = GetObj('ISL_Cont').scrollLeft - GetObj('List1').scrollWidth;} GetObj('ISL_Cont').scrollLeft += Space ; } function CompScr(){ var num; if(Comp == 0){MoveLock = false;return;} if(Comp <0){ //On the turn if(Comp <-Space){ Comp += Space; num = Space; }else{ num = -Comp; Comp = 0; } GetObj('ISL_Cont').scrollLeft -= num; setTimeout('CompScr()',Speed); }else{ //Under the double if(Comp > Space){ Comp -= Space; num = Space; }else{ num = Comp; Comp = 0; } GetObj('ISL_Cont').scrollLeft += num; setTimeout('CompScr()',Speed); } } //--><!]]> </script> </body> </html>
Right click end.
Recommended from our users: Dynamic Network Monitoring from WhatsUp Gold from IPSwitch. Free Download
Posted by Donna at November 15, 2013 - 12:53 PM