麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 編程 > JavaScript > 正文

使用jQuery仿蘋果官網焦點圖特效

2019-11-20 13:37:34
字體:
來源:轉載
供稿:網友

這次我們要分享的這款jQuery焦點圖非常特別,它的外觀特別簡單,但是又相當大氣。焦點圖的整體樣式是仿蘋果樣式的,由于jQuery的運用,我們只要點擊圖片下方的縮略圖即可達到圖片切換的焦點圖特效,這款jQuery焦點圖插件非常適合在產片展示的網頁上使用。

接下來我們一起分享一下實現這款蘋果焦點圖的過程及源碼。

HTML代碼:

復制代碼 代碼如下:

<div id="gallery">
    <div id="slides" style="width: 3680px; margin-left: 0px;">
    <div class="slide"><img width="920" height="400" alt="side" src="img/sample_slides/macbook.jpg"></div>
    <div class="slide"><img width="920" height="400" alt="side" src="img/sample_slides/iphone.jpg"></div>
    <div class="slide"><img width="920" height="400" alt="side" src="img/sample_slides/imac.jpg"></div>
    <div class="slide"><a target="_blank" href=" width="920" height="400" alt="side" src="img/sample_slides/info.jpg"></a></div>
    </div>
    <div id="menu">
    <ul>
        <li class="fbar inact"> </li><li class="menuItem inact act"><a href=""><img alt="thumbnail" src="img/sample_slides/thumb_macbook.png"></a></li><li class="menuItem inact"><a href=""><img alt="thumbnail" src="img/sample_slides/thumb_iphone.png"></a></li><li class="menuItem inact"><a href=""><img alt="thumbnail" src="img/sample_slides/thumb_imac.png"></a></li><li class="menuItem inact"><a href=""><img alt="thumbnail" src="img/sample_slides/thumb_about.png"></a></li>
    </ul>
    </div>
  </div>

從以上HTML代碼可以看出,整個焦點圖由一些div構成圖片容器,用ul li列表構成下面的縮略圖。

CSS代碼:

復制代碼 代碼如下:

#gallery{
    /* CSS3 Box Shadow */
    -moz-box-shadow:0 0 3px #AAAAAA;
    -webkit-box-shadow:0 0 3px #AAAAAA;
    box-shadow:0 0 3px #AAAAAA;
    /* CSS3 Rounded Corners */
    -moz-border-radius-bottomleft:4px;
    -webkit-border-bottom-left-radius:4px;
    border-bottom-left-radius:4px;
    -moz-border-radius-bottomright:4px;
    -webkit-border-bottom-right-radius:4px;
    border-bottom-right-radius:4px;
    border:1px solid white;
    background:url(img/panel.jpg) repeat-x bottom center #ffffff;
    /* The width of the gallery */
    width:920px;
    overflow:hidden;
}
#slides{
    /* This is the slide area */
    height:400px;
    /* jQuery changes the width later on to the sum of the widths of all the slides. */
    width:920px;
    overflow:hidden;
}
.slide{
    float:left;
}
#menu{
    /* This is the container for the thumbnails */
    height:45px;
}
ul{
    margin:0px;
    padding:0px;
}
li{
    /* Every thumbnail is a li element */
    width:60px;
    display:inline-block;
    list-style:none;
    height:45px;
    overflow:hidden;
}
li.inact:hover{
    /* The inactive state, highlighted on mouse over */
    background:url(img/pic_bg.png) repeat;
}
li.act,li.act:hover{
    /* The active state of the thumb */
    background:url(img/active_bg.png) no-repeat;
}
li.act a{
    cursor:default;
}
.fbar{
    /* The left-most vertical bar, next to the first thumbnail */
    width:2px;
    background:url(img/divider.png) no-repeat right;
}
li a{
    display:block;
    background:url(img/divider.png) no-repeat right;
    height:35px;
    padding-top:10px;
}
a img{
    border:none;
}

CSS代碼也非常簡單,都是一些簡單設置而已。

jQuery代碼:

復制代碼 代碼如下:

$(document).ready(function(){
    /* This code is executed after the DOM has been completely loaded */
    var totWidth=0;
    var positions = new Array();
    $('#slides .slide').each(function(i){
        /* Traverse through all the slides and store their accumulative widths in totWidth */
        positions[i]= totWidth;
        totWidth += $(this).width();
        /* The positions array contains each slide's commulutative offset from the left part of the container */
        if(!$(this).width())
        {
            alert("Please, fill in width & height for all your images!");
            return false;
        }
    });
    $('#slides').width(totWidth);
    /* Change the cotnainer div's width to the exact width of all the slides combined */
    $('#menu ul li a').click(function(e,keepScroll){
            /* On a thumbnail click */
            $('li.menuItem').removeClass('act').addClass('inact');
            $(this).parent().addClass('act');
            var pos = $(this).parent().prevAll('.menuItem').length;
            $('#slides').stop().animate({marginLeft:-positions[pos]+'px'},450);
            /* Start the sliding animation */
            e.preventDefault();
            /* Prevent the default action of the link */
            // Stopping the auto-advance if an icon has been clicked:
            if(!keepScroll) clearInterval(itvl);
    });
    $('#menu ul li.menuItem:first').addClass('act').siblings().addClass('inact');
    /* On page load, mark the first thumbnail as active */
    /*****
     *
     *    Enabling auto-advance.
     *
     ****/
    var current=1;
    function autoAdvance()
    {
        if(current==-1) return false;
        $('#menu ul li a').eq(current%$('#menu ul li a').length).trigger('click',[true]);    // [true] will be passed as the keepScroll parameter of the click function on line 28
        current++;
    }
    // The number of seconds that the slider will auto-advance in:
    var changeEvery = 10;
    var itvl = setInterval(function(){autoAdvance()},changeEvery*1000);
    /* End of customizations */
});

這是焦點圖的重點,完成了圖片滑塊的動畫邏輯,點擊縮略圖即可切換圖片。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 91性高湖久久久久久久久网站 | 狠狠干91| 欧美性videofree精品 | 国产精品区一区二区三区 | 少妇一级淫片高潮流水电影 | 黄色一级片在线免费观看 | 亚洲精品免费播放 | 龙床上的呻吟高h | 欧美一级精品 | 中文字幕在线视频日本 | 国产午夜精品一区二区三区四区 | 草草久| 日韩视频中文 | 久久免费综合视频 | 中文日韩欧美 | 精品一区二区久久久久 | 欧美视频一区二区三区四区 | 国产深夜福利视频在线播放 | 日韩中文字幕三区 | 欧美一级色片 | 色屁屁xxxxⅹ免费视频 | 黄色7777| 一级性生活免费视频 | 国产一区二区视频观看 | 成人一级视频在线观看 | 182tv成人福利视频免费看 | 亚洲生活片 | 亚洲导航深夜福利涩涩屋 | 最新黄色毛片 | 91九色免费视频 | 久久精品国产99国产精品澳门 | 国产精品一区在线观看 | 久久伊人国产精品 | 天天撸日日夜夜 | 日本精品网 | 久久久中文 | 鲁久久 | 国产大片免费看 | 国产亚洲小视频 | 叶子楣成人爽a毛片免费啪啪 | 久久精品.com |