jQuery+CSS實現的圖片滾動效果

來源:互聯網
上載者:User

本例實現了一系列圖片滾動的效果,適合用在需要展示圖片庫或夥伴友情連結圖片之類的網站首頁。可以控製圖片滾動的速度、自動/手動滾動圖片、支援滑鼠移至上方等。

 

XHTML
<div class="bx_wrap"> 
   <div class="bx_container"> 
      <ul id="demo1"> 
          <li><img  alt="#" width="140" height="94" src="img/s1.jpg"></li> 
          <!--更多圖片--> 
       </ul> 
    </div> 
 </div> 

XHTML由一組圖片構成的無序列表ul,給ul一個id屬性用於JS調用,另外ul的父級div.bx_container和div.bx_wrap是必需的。此外記得在head間載入jquery庫和滾動所需的js外掛程式:

<script type="text/javascript" src="js/jquery.js"> </script> 
<script type="text/javascript" src="js/bxCarousel.js"> </script> 
CSS
.bx_wrap {margin-left: 10px; margin-top:10px} 
.bx_wrap ul img { border: 2px solid #ddd; } 
.bx_wrap ul li{text-align:center} 
.bx_wrap ul li a:hover{text-decoration:none; color:#f30} 
.bx_wrap a.prev {width:20px;height:24px;line-height:24px;outline-style:none;outline-width: 0; 
position:absolute; top:45px; left:-2px; text-indent:-999em; background: url(img/arr_left.gif)  
no-repeat;} 
.bx_wrap a.next {width:20px;height:24px;line-height:24px; left:626px;position: absolute; 
top:45px; text-indent:-999em; background:url(img/arr_right.gif) no-repeat;} 

如果要使用方向按鈕導航,則需要設定.bx_wrap a.prev和.bx_wrap a.next的樣式。

jQuery
$("#demo1").bxCarousel({ 
    display_num: 4,  
    move: 1,  
    auto: true,  
    controls: false, 
    margin: 10 
}); 

bxCarousel參數說明:

move:每次滾動移動圖片的數量,預設為4。

display_num:展示圖片的數量,預設為4。

speed:圖片捲動速度,預設為500毫秒。

margin:圖片間的間距,預設為0。

auto:是否自動滾動,預設為false。

auto_interval:當設為自動滾動時,每次滾動的時間間隔(毫秒),預設為2000毫秒即2秒。

auto_dir:自動滾動的方向,預設為next,你可以試下prev。

next_image:向右滾方向按鈕圖片,可以用CSS設定。

prev_image:向左滾方向按鈕圖片,可以用CSS設定。

auto_hover:滾動時,滑鼠滑片時是否停止滾動,預設為false。

controls:是否顯示左右滾動按鈕圖片,預設為true。

 

 

轉載:

http://www.helloweba.com/view-blog-139.html

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.