溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Jquery圖片左右滾動

發(fā)布時間:2020-06-06 07:50:27 來源:網(wǎng)絡(luò) 閱讀:1372 作者:涂根華 欄目:web開發(fā)

源碼:

 

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
  2. <html xmlns="http://www.w3.org/1999/xhtml"> 
  3. <head> 
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  5. <title>無標(biāo)題文檔</title> 
  6. <script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script> 
  7. <style> 
  8. /* CSS reset */ 
  9. body,div,dl,dt,dd,ul,ol,li,h2,h3,h4,h5,h6,h7,pre,form,fieldset,input,textarea,p,blockquote,th,td{ margin:0; padding:0; font-size:12px; font-family:"宋體";} 
  10. table{ border-collapse:collapse; border-spacing:0;} 
  11. fieldset,img{ border:0; display:block;} 
  12. address,caption,cite,code,dfn,em,strong,th,var{ font-style:normal; font-weight:normal;} 
  13. ol,ul{ list-style:none;} 
  14. caption,th{ text-align:left;} 
  15. h2,h3,h4,h5,h6,h7{ font-size:100%; font-weight:normal;} 
  16. .scroll{ width:300px; height:110px; overflow:hidden; position:relative; margin:100px auto 0; border:1px solid #ccc;} 
  17. .scroll ul{ position:absolute; width:3000px;} 
  18. .scroll li{ float:left; padding:5px 0;} 
  19. </style> 
  20. </head> 
  21.  
  22. <body> 
  23.     <div class="scroll"> 
  24.         <ul> 
  25.             <li><a href="#" target="_blank"><img  src="p_w_picpaths/1-1.jpg" width="100" height="100"/></a></li> 
  26.             <li><a href="#" target="_blank"><img  src="p_w_picpaths/1-2.jpg" width="100" height="100"/></a></li> 
  27.             <li><a href="#" target="_blank"><img  src="p_w_picpaths/1-3.jpg" width="100" height="100"/></a></li> 
  28.             <li><a href="#" target="_blank"><img  src="p_w_picpaths/1-4.jpg" width="100" height="100"/></a></li> 
  29.             <li><a href="#" target="_blank"><img  src="p_w_picpaths/1-5.jpg" width="100" height="100"/></a></li> 
  30.             <li><a href="#" target="_blank"><img  src="p_w_picpaths/1-6.jpg" width="100" height="100"/></a></li> 
  31.         </ul> 
  32.     </div> 
  33.  <script src="scroll.js"></script> 
  34.  <script type="text/javascript"> 
  35.      function AutoPlay(){ 
  36.         var _scroll = $(".scroll ul"); 
  37.         _scroll.animate({marginLeft : "-100px"},1000,function(){ 
  38.             _scroll.css({marginLeft : "0px"}).find("li:first").appendTo(this);   
  39.         });  
  40.     } 
  41.     jQuery(function(){ 
  42.         var t = setInterval(function(){ 
  43.             AutoPlay();  
  44.         },3000); 
  45.         $(".scroll").hover(function(){ 
  46.             clearInterval(t);    
  47.         },function(){ 
  48.             t = setInterval(function(){ 
  49.                 AutoPlay();  
  50.             },3000);     
  51.         })   
  52.     })   
  53.  </script> 
  54. </body> 
  55. </html> 

 

附件:http://down.51cto.com/data/2359731
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI