网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 jQuery制作简洁的图片轮播效果
内容
    演示图:
    
    
    jQuery制作简洁的图片轮播效果 三联
    核心代码:
    $(document).ready(function(){
    var $iBox = $('.imgBox'),
    $iNum = $('.imgNum'), //缓存优化
    indexImg = 1, //初始下标
    totalImg = 4, //图片总数量
    imgSize = 300, //图片尺寸 宽度
    moveTime = 1100, //切换动画时间
    setTime = 2500, //中间暂停时间
    clc = null;
    function moveImg(){
    if(indexImg != totalImg){
    $iBox.animate({
    left: -(indexImg*imgSize) + 'px'
    }, moveTime);
    $iNum.removeClass('mark-color')
    .eq(indexImg)
    .addClass('mark-color');
    indexImg++;
    }
    else{
    indexImg = 1;
    $iNum.removeClass('mark-color')
    .eq(indexImg - 1)
    .addClass('mark-color');
    $iBox.animate({
    left: 0
    }, moveTime);
    }
    }
    $iNum.hover(function(){
    $iBox.stop(); //结束当前动画
    clearInterval(clc); //暂停循环
    $iNum.removeClass('mark-color');
    $(this).addClass('mark-color');
    indexImg = $(this).index();
    $iBox.animate({
    left: -(indexImg*imgSize) + 'px'
    }, 500);
    },function(){
    clc = setInterval(moveImg, setTime);
    });
    clc = setInterval(moveImg, setTime);
    });
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/23 12:05:40