javascript代码实例教程-如何使用jQuery仿苹果官网焦点图特效

发布时间:2018-12-29 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了javascript代码实例教程-如何使用jQuery仿苹果官网焦点图特效脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。
小宝典致力于为广大程序猿(媛)提供高品质的代码服务,请大家多多光顾小站,小宝典在此谢过。

这次我们要分享的这款jQuery焦点图非常特别,它的外观特别简单,但是又相当大气。焦点图的整体样式是仿苹果样式的,由于jquery的运用,我们只要点击图片下方的缩略图即可达到图片切换的焦点图特效,这款jQuery焦点图插件非常适合在产片展示的网页上使用。

如何使用jQuery仿苹果官网焦点图特效

接下来我们一起分享一下实现这款苹果焦点图的过程及码。

HTML代码:

 

代码如下:


<p id="gallery">
    <p id="slides" style="width: 3680px; margin-left: 0px;">
    <p class="slide"><img width="920" height="400" alt="side" src="img/sample_slides/macBook.jpg"></p>
    <p class="slide"><img width="920" height="400" alt="side" src="img/sample_slides/iphone.jpg"></p>
    <p class="slide"><img width="920" height="400" alt="side" src="img/sample_slides/imac.jpg"></p>
    <p class="slide"><a target="_blank" href="https://tutorialzine.COM/2009/10/beautiful-apple-gallery-slideshow/"><img width="920" height="400" alt="side" src="img/sample_slides/info.jpg"></a></p>
    </p>
    <p 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>
    </p>
  </p>

 

从以上HTML代码可以看出,整个焦点图由一些p构成图片容器,用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/pider.png) no-repeat right;
}
li a{
    display:block;
    background:url(img/pider.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){
      &nnbsp; /* 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 p'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 */
});

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

觉得可用,就经常来吧! 脚本宝典 欢迎评论哦! js脚本,巧夺天工,精雕玉琢。小宝典献丑了!

脚本宝典总结

以上是脚本宝典为你收集整理的javascript代码实例教程-如何使用jQuery仿苹果官网焦点图特效全部内容,希望文章能够帮你解决javascript代码实例教程-如何使用jQuery仿苹果官网焦点图特效所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。