91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

常用實用圖片輪播效果jquery插件

發布時間:2020-04-23 07:51:38 來源:網絡 閱讀:635 作者:xiangxinchen520 欄目:web開發

輪播效果在頁面中經常用到的比較普通的照片輪播效果插件:

1.Nivo Slider:一種最常見最普通的圖片輪播效果。

 常用實用圖片輪播效果jquery插件

Demo地址:http://dev7studios.com/nivo-slider/#/demos

2.Smooth  Div Scroll:鼠標移動到左右鍵上面才開始輪播。

常用實用圖片輪播效果jquery插件

Demo地址: http://www.smoothdivscroll.com/

3.s3Slider jquery plugin:一款帶圖片介紹的輪播效果。

常用實用圖片輪播效果jquery插件

Demo地址:http://www.serie3.info/s3slider/demonstration.html

4.lightbox點擊圖片瀏覽大圖

常用實用圖片輪播效果jquery插件

常用實用圖片輪播效果jquery插件

Demo地址:http://leandrovieira.com/projects/jquery/lightbox/#

5.帶下拉條的輪播效果

常用實用圖片輪播效果jquery插件

Demo地址:http://jqueryfordesigners.com/demo/slider-gallery.html

6.帶縮略圖的左右點擊瀏覽效果

 常用實用圖片輪播效果jquery插件

Demo地址:http://tympanus.net/Tutorials/ResponsiveImageGallery/

7.Circular Content Carousel with jquery帶查看詳細信息的圖片瀏覽效果

常用實用圖片輪播效果jquery插件

常用實用圖片輪播效果jquery插件

Demo地址:http://tympanus.net/Development/CircularContentCarousel/#

官方網址:http://tympanus.net/codrops/2011/08/16/circular-content-carousel/

源碼分析:先上官網下載tympanus插件,加載該插件并設置參數

$('#ca-container').contentcarousel({
    // speed for the sliding animation
    sliderSpeed     : 500,
    // easing for the sliding animation
    sliderEasing    : 'easeOutExpo',
    // speed for the item animation (open / close)
    itemSpeed       : 500,
    // easing for the item animation (open / close)
    itemEasing      : 'easeOutExpo',
    // number of items to scroll at a time
    scroll          : 1
});
html
<div id="ca-container" class="ca-container">
    <div class="ca-wrapper">
        <div class="ca-item ca-item-1">
            <div class="ca-item-main">
                <div class="ca-icon"></div>
                <h4>Stop factory farming</h4>
                <h5>
                    <span class="ca-quote">“</span>
                    <span>Some text...</span>
                </h5>
                    <a href="#" class="ca-more">more...</a>
            </div>
            <div class="ca-content-wrapper">
                <div class="ca-content">
                    <h7>Animals are not commodities</h7>
                    <a href="#" class="ca-close">close</a>
                    <div class="ca-content-text">
                        <p>Some more text...</p>
                    </div>
                    <ul>
                        <li><a href="#">Read more</a></li>
                        <li><a href="#">Share this</a></li>
                        <li><a href="#">Become a member</a></li>
                        <li><a href="#">Donate</a></li>
                    </ul>
                </div>
            </div>
        </div>
        <div class="ca-item ca-item-2">
            ...
        </div>
        ...
    </div><!-- ca-wrapper -->
</div><!-- ca-container -->

8.skitte能查看縮略圖的輪播效果

常用實用圖片輪播效果jquery插件

Demo地址:http://www.skitter-slider.net/

9.timelinr聯動輪播

常用實用圖片輪播效果jquery插件

Demo地址:http://www.csslab.cl/2011/08/18/jquery-timelinr/

代碼分析

首先需要下載jquery.timelinr-0.9.53.js插件

然后加載插件

$(function(){

   $().timelinr();

});

在 $().timelinr();中設置插件參數

參數

orientation: 'horizontal',定位方向

      // value: horizontal | vertical, default to horizontal

      containerDiv: '#timeline',當前div的id

      // value: any HTML tag or #id, default to #timeline

      datesDiv: '#dates',時間div

      // value: any HTML tag or #id, default to #dates

      datesSelectedClass: 'selected',當前選中時間的樣式

      // value: any class, default to selected

      datesSpeed: 'normal',輪播的速度

      // value: integer between 100 and 1000 (recommended) or 'slow', 'normal' or 'fast'; default to normal

      issuesDiv : '#issues',是否使用div

      // value: any HTML tag or #id, default to #issues

      issuesSelectedClass: 'selected',選擇后是否使用選中樣式

      // value: any class, default to selected

      issuesSpeed: 'fast',使用的速度

      // value: integer between 100 and 1000 (recommended) or 'slow', 'normal' or 'fast'; default to fast

      issuesTransparency: 0.2,使用遮罩層的透明度

      // value: integer between 0 and 1 (recommended), default to 0.2

      issuesTransparencySpeed: 500,使用遮罩層的速度

      // value: integer between 100 and 1000 (recommended), default to 500 (normal)

      prevButton: '#prev',上一頁id

      // value: any HTML tag or #id, default to #prev

      nextButton: '#next',下一頁id

      // value: any HTML tag or #id, default to #next

      arrowKeys: 'false',

      // value: true/false, default to false

      startAt: 1,開始參數

      // value: integer, default to 1 (first)

      autoPlay: 'false',是否允許自動輪播

      // value: true | false, default to false

      autoPlayDirection: 'forward',自動輪播方向

      // value: forward | backward, default to forward

      autoPlayPause: 2000 自動輪播間歇

      // value: integer (1000 = 1 seg), default to 2000 (2segs)< });

 Html代碼

<div id="timeline">

   <ul id="dates">

      <li><a href="#">date1</a></li>

      <li><a href="#">date2</a></li>

   </ul>

   <ul id="issues">

      <li id="date1">

         <p>Lorem ipsum.</p>

      </li>

      <li id="date2">

         <p>Lorem ipsum.</p>

      </li>

   </ul>

   <a href="#" id="next">+</a> <!-- optional -->

   <a href="#" id="prev">-</a> <!-- optional -->

</div>

10.all in one jquery rotator-content slider基本上能滿足網站首頁輪播所有效果(該插件需要付費購買)

常用實用圖片輪播效果jquery插件

Demo地址:http://www.responsivejqueryslider.com/banner_rotator.html

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

威信县| 景谷| 靖西县| 砀山县| 平果县| 连平县| 图们市| 延寿县| 改则县| 崇仁县| 和田县| 曲沃县| 喀什市| 锡林郭勒盟| 香港| 资兴市| 乳源| 台江县| 专栏| 南京市| 咸丰县| 永德县| 台中市| 繁峙县| 海门市| 鸡泽县| 丰台区| 焉耆| 广西| 普兰县| 平果县| 揭西县| 亳州市| 芮城县| 桐梓县| 连州市| 萝北县| 四川省| 永康市| 高要市| 特克斯县|