极乐门资源网 Design By www.ioogu.com

这次我们要分享的这款jQuery焦点图非常特别,它的外观特别简单,但是又相当大气。焦点图的整体样式是仿苹果样式的,由于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="/UploadFiles/2021-04-02/macbook.jpg">     <div class="slide"><img width="920" height="400" alt="side" src="img/sample_slides/iphone.jpg">     <div class="slide"><img width="920" height="400" alt="side" src="/UploadFiles/2021-04-02/imac.jpg">     <div class="slide"><a target="_blank" href="http://tutorialzine.com/2009/10/beautiful-apple-gallery-slideshow/"><img width="920" height="400" alt="side" src="/UploadFiles/2021-04-02/info.jpg">     </div>
    <div id="menu">
    <ul>
        <li class="fbar inact"> </li><li class="menuItem inact act"><a href=""><img alt="thumbnail" src="/UploadFiles/2021-04-02/thumb_macbook.png">     </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 */
});

这是焦点图的重点,完成了图片滑块的动画逻辑,点击缩略图即可切换图片。

标签:
jQuery,仿苹果官网,焦点图

极乐门资源网 Design By www.ioogu.com
极乐门资源网 免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
极乐门资源网 Design By www.ioogu.com

评论“使用jQuery仿苹果官网焦点图特效”

暂无使用jQuery仿苹果官网焦点图特效的评论...

《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线

暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。

艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。

《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。