国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

簡單的圖片輪播

BlackFlagBin / 1014人閱讀

摘要:效果功能左右箭頭切換狀態控制點切換鼠標懸念自動輪播廣西南寧低價供應各種地被綠化苗木等廣西南寧低價供應各種地被綠化苗木等廣西南寧低價供應各種地被綠化苗木等

效果:

功能:
1、左右箭頭切換
2、狀態控制點切換
3、鼠標懸念
4、自動輪播

HTML:

CSS:

.zh-carousel{position: relative;width: 100%;height: 246px;}
.zh-carousel .zh-img-list{position: relative;z-index: 2;width: 100%;height: 100%;overflow: hidden;}
.zh-carousel .zh-img-list ul{height: 100%;}
.zh-carousel .zh-img-list li{position: absolute;z-index: 0;left: 0;top: 0;width: 100%;height: 100%;}
.zh-carousel .zh-img-list .active{z-index: 1;}
.zh-carousel .zh-img-list li a{display: block;position: relative;height: 100%;}
.zh-carousel .zh-img-list li img{display: block;width: 100%;height: 100%;opacity: 0;filter:Alpha(opacity=0);-webkit-transition: all .5s ease-out;transition: all .5s ease-out;}
.zh-carousel .zh-img-list .active img{opacity: 1;filter:Alpha(opacity=100);}
.zh-carousel .zh-img-list li .zh-desc{display: block;position: absolute;z-index: 3;left: 0;bottom: -36px;width: 100%;padding: 10px 15px;box-sizing: border-box;background-color: rgba(0,0,0,0.5);font-size: 14px;color: #fff;-webkit-transition: all .5s ease-out;transition: all .5s ease-out;white-space: nowrap;text-overflow: ellipsis;overflow: hidden;}
.zh-carousel .zh-img-list .active .zh-desc{bottom: 0;}
.zh-carousel .zh-status-list{position: absolute;z-index: 4;left: 0;top: 0;width: 100%;padding: 10px 15px;box-sizing: border-box;text-align: right;}
.zh-carousel .zh-status-list li{display: inline-block;width: 10px;height: 10px;margin-left: 5px;background-color: #fff;border: 1px solid #ffffd;cursor: pointer;}
.zh-carousel .zh-status-list .active{background-color: #FFD8C6;border: 1px solid #ED713D;}
.zh-carousel .zh-prev,
.zh-carousel .zh-next{display: inline-block;position: absolute;z-index: 4;top: 50%;-webkit-transform: translate(0, -50%);transform: translate(0, -50%);width: 20px;height: 30px;background-color: rgba(0,0,0,0.5);font-family: "SimSun";font-size: 18px;font-weight: bold;color: #fff;text-align: center;line-height: 30px;cursor: pointer;}
.zh-carousel .zh-prev:hover,
.zh-carousel .zh-next:hover {background-color: rgba(0,0,0,0.75);}
.zh-carousel .zh-prev{left: 0;}
.zh-carousel .zh-next{right: 0;}

JS:

$.extend({
    /*
        圖片輪播
        @param options object (配置項)
    */
    carousel: function(options) {
        var defaults = {
            box: ".zh-carousel",               // 盒子
            listBox: ".zh-img-list",      // 列表框
            stateBox: ".zh-status-list",    // 狀態框
            prev: ".zh-prev",         // 上一個
            next: ".zh-next",         // 下一個
            time: 2000                   // 動畫時間
        }

        var conf = $.extend({}, defaults, options);

        // 給第一個添加狀態
        $(conf.box).find(conf.listBox).find("li:first").addClass("active");

        // 獲取圖片的數量
        var liNum = $(conf.box).find(conf.listBox).find("li").size();

        // 添加狀態列表
        var statusList = "
    "; for(var i=0; i"; } else { statusList += "
  • "; } } statusList += "
"; $(conf.box).append(statusList); // 添加左右按鈕 var btns = "<>"; $(conf.box).append(btns); // 索引 var index = 0; // 切換函數 function switchFunc(curIndex) { index++; if(index > liNum - 1) { index = 0; } $(conf.box).find(conf.stateBox).find("li").eq(index).addClass("active").siblings().removeClass("active"); $(conf.box).find(conf.listBox).find("li").eq(index).addClass("active").siblings().removeClass("active"); } // 自動播放 var autoPlay = setInterval(function() { switchFunc(index); }, conf.time); // 鼠標懸停 $(conf.box).find(conf.listBox).mouseover(function() { clearInterval(autoPlay); }).mouseout(function() { autoPlay = setInterval(function() { switchFunc(index); }, conf.time); }); // 控制點 $(conf.box).find(conf.stateBox).find("li").mouseover(function() { clearInterval(autoPlay); }).mouseout(function() { autoPlay = setInterval(function() { switchFunc(index); }, conf.time); }).click(function() { $(this).addClass("active").siblings().removeClass("active"); $(conf.box).find(conf.listBox).find("li").eq($(this).index()).addClass("active").siblings().removeClass("active"); index = $(this).index(); }); // 點擊左箭頭 $(conf.box).find(conf.prev).mouseover(function() { clearInterval(autoPlay); }).mouseout(function() { autoPlay = setInterval(function() { switchFunc(index); }, conf.time); }).click(function() { index--; if(index < 0) { index = liNum - 1; } $(conf.box).find(conf.stateBox).find("li").eq(index).addClass("active").siblings().removeClass("active"); $(conf.box).find(conf.listBox).find("li").eq(index).addClass("active").siblings().removeClass("active"); }); // 點擊右箭頭 $(conf.box).find(conf.next).mouseover(function() { clearInterval(autoPlay); }).mouseout(function() { autoPlay = setInterval(function() { switchFunc(index); }, conf.time); }).click(function() { index++; if(index > liNum-1) { index = 0; } $(conf.box).find(conf.stateBox).find("li").eq(index).addClass("active").siblings().removeClass("active"); $(conf.box).find(conf.listBox).find("li").eq(index).addClass("active").siblings().removeClass("active"); }); } }); // 調用 $.carousel();

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/83227.html

相關文章

  • 手把手和你用原生JS寫一個循環播放圖片輪播

    摘要:前段時間學習了淘寶首頁的靜態頁面,其中收獲較大的的就是這個循環播放的圖片輪播組件,本文就將相關制作經驗分享給大家。作為演示,用標簽代替了圖片。關鍵使用不同背景色的替代圖片。 前段時間學習了淘寶首頁的靜態頁面,其中收獲較大的的就是這個循環播放的圖片輪播組件,本文就將相關制作經驗分享給大家。 先看看在線DEMO:原生JS循環播放圖片輪播組件?(支持IE8+,本文中的在線demo均未經過壓縮...

    enda 評論0 收藏0
  • 手把手和你用原生JS寫一個循環播放圖片輪播

    摘要:前段時間學習了淘寶首頁的靜態頁面,其中收獲較大的的就是這個循環播放的圖片輪播組件,本文就將相關制作經驗分享給大家。作為演示,用標簽代替了圖片。關鍵使用不同背景色的替代圖片。 前段時間學習了淘寶首頁的靜態頁面,其中收獲較大的的就是這個循環播放的圖片輪播組件,本文就將相關制作經驗分享給大家。 先看看在線DEMO:原生JS循環播放圖片輪播組件?(支持IE8+,本文中的在線demo均未經過壓縮...

    dendoink 評論0 收藏0
  • 手把手和你用原生JS寫一個循環播放圖片輪播

    摘要:前段時間學習了淘寶首頁的靜態頁面,其中收獲較大的的就是這個循環播放的圖片輪播組件,本文就將相關制作經驗分享給大家。作為演示,用標簽代替了圖片。關鍵使用不同背景色的替代圖片。 前段時間學習了淘寶首頁的靜態頁面,其中收獲較大的的就是這個循環播放的圖片輪播組件,本文就將相關制作經驗分享給大家。 先看看在線DEMO:原生JS循環播放圖片輪播組件?(支持IE8+,本文中的在線demo均未經過壓縮...

    gityuan 評論0 收藏0
  • 實現簡單輪播

    摘要:小練習輪播圖組件任務描述在和上一任務同一目錄下面創建一個文件,在目錄中創建,并在其中編碼,實現一個輪播圖的功能。實現思路考察對節點,定時器,事件的處理。 小練習3:輪播圖組件 任務描述在和上一任務同一目錄下面創建一個task0002_3.html文件,在js目錄中創建task0002_3.js,并在其中編碼,實現一個輪播圖的功能。 圖片數量及URL均在HTML中寫好 可以配置輪播的順...

    EsgynChina 評論0 收藏0
  • 簡單無縫輪播

    摘要:昨天學習了輪播的原理,今天再來看看無縫輪播的技術。無縫輪播無縫輪播的原來大致類似小時候跳大繩,小朋友一個個進入,一個個出來,出來后排到隊伍末尾,等在著進入,無縫輪播也類似這種機制。 昨天學習了輪播的原理,今天再來看看無縫輪播的技術。 昨天學習的輪播機制類似于走馬燈,所有圖片排成一排,輪流在你眼前走過,你就會感覺他們動起來了,今天學的無縫輪播就不能用昨天的思路了,它和昨天最大的區別是,從...

    Kyxy 評論0 收藏0
  • html學習之路--簡單圖片輪播

    摘要:一個簡單的圖片輪播效果頁面代碼,基本的結構,在中顯示圖片,此處圖片依次命名為。簡單圖片輪播然后對網頁進行一個非常簡單的美化。具體到元素標簽最后是文件對圖片輪播進行控制。一個簡單的圖片輪播效果 photo.html頁面代碼,基本的HTML結構,在main中顯示圖片,此處圖片依次命名為1.jpg、2.jpg、3.jpg、4.jpg。 1 DOCTYPE html> 2 3 ...

    番茄西紅柿 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<