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


Posted in Javascript onDecember 23, 2014

这次我们要分享的这款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="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="http://tutorialzine.com/2009/10/beautiful-apple-gallery-slideshow/"><img 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 */

});

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

Javascript 相关文章推荐
JS实现很酷的EMAIL地址添加功能实例
Feb 28 Javascript
JavaScript实现ASC转汉字及汉字转ASC的方法
Jan 23 Javascript
js计算时间差代码【包括计算,天,时,分,秒】
Apr 26 Javascript
javascript遍历json对象的key和任意js对象属性实例
Mar 09 Javascript
Express + Node.js实现登录拦截器的实例代码
Jul 01 Javascript
JavaScript正则表达式和级联效果
Sep 14 Javascript
解决Vue 通过下表修改数组,页面不渲染的问题
Mar 08 Javascript
vue-router beforeEach跳转路由验证用户登录状态
Dec 26 Javascript
Node.js net模块功能及事件监听用法分析
Jan 05 Javascript
一次微信小程序内地图的使用实战记录
Sep 09 Javascript
Vue实现多标签选择器
Nov 28 Javascript
JS async 函数的含义和用法实例总结
Apr 08 Javascript
jQuery分组选择器用法实例
Dec 23 #Javascript
常用的JS验证和函数汇总
Dec 23 #Javascript
jQuery后代选择器用法实例
Dec 23 #Javascript
浅析Javascript中“==”与“===”的区别
Dec 23 #Javascript
javascript实现微信分享
Dec 23 #Javascript
JSON取值前判断
Dec 23 #Javascript
jQuery基础语法实例入门
Dec 23 #Javascript
You might like
提升PHP性能的21种方法介绍
2013/06/25 PHP
php使用环形链表解决约瑟夫问题完整示例
2018/08/07 PHP
Smarty模板变量与调节器实例详解
2019/07/20 PHP
深入分析jquery解析json数据
2014/12/09 Javascript
jQuery实现企业网站横幅焦点图切换功能实例
2015/04/30 Javascript
15个常用的jquery代码片段
2015/12/19 Javascript
javascript三种代码注释方法
2016/06/02 Javascript
AngularJS全局警告框实现方法示例
2017/05/18 Javascript
Angular4绑定html内容出现警告的处理方法
2017/11/03 Javascript
webpack 3.X学习之多页面打包的方法
2018/09/04 Javascript
react 父子组件之间通讯props
2018/09/08 Javascript
详解JavaScript中操作符和表达式
2018/09/12 Javascript
微信小程序事件对象中e.target和e.currentTarget的区别详解
2019/05/08 Javascript
js实现圆形显示鼠标单击位置
2020/02/11 Javascript
vue实现放大镜效果
2020/09/17 Javascript
[09:13]DOTA2-DPC中国联赛 正赛 Ehome vs Magma 选手采访 1月19日
2021/03/11 DOTA
Python中的闭包实例详解
2014/08/29 Python
python算法演练_One Rule 算法(详解)
2017/05/17 Python
浅析Python数据处理
2018/05/02 Python
Python实现字典排序、按照list中字典的某个key排序的方法示例
2018/12/18 Python
Python设计模式之备忘录模式原理与用法详解
2019/01/15 Python
手把手教你pycharm专业版安装破解教程(linux版)
2019/09/26 Python
解决tensorflow/keras时出现数组维度不匹配问题
2020/06/29 Python
adidas美国官网:adidas US
2016/09/21 全球购物
美国特价机票专家:Airfarewatchdog
2018/01/24 全球购物
美国购买舞会礼服网站:Couture Candy
2019/12/29 全球购物
Linux内核的同步机制是什么?主要有哪几种内核锁
2016/07/11 面试题
医学专业毕业生个人的求职信
2013/12/04 职场文书
《胡杨》教学反思
2014/02/16 职场文书
公司经理任命书
2014/06/05 职场文书
2014年机关作风建设工作总结
2014/10/23 职场文书
2015年小学辅导员工作总结
2015/05/27 职场文书
公司宣传语大全
2015/07/13 职场文书
严以律己专题学习研讨会发言材料
2015/11/09 职场文书
Oracle安装TNS_ADMIN环境变量设置参考
2021/11/01 Oracle
python中filter,map,reduce的作用
2022/06/10 Python