您好,欢迎来到源码搜藏!分享精神,快乐你我!提示:担心找不到本站?在百度搜索“源码搜藏”,网址永远不丢失!
  • 首 页
  • 在线工具
  • 当前位置:首页 > 网页特效 > jQuery特效 >

    jquery左右透明遮罩图片切换代码

    时间:2014-10-09 08:22 来源:互联网 作者:源码搜藏 浏览:收藏 挑错 推荐 打印

    效果预览 进入下载地址列表
    jquery左右透明遮罩图片切换代码jquery左右透明遮罩图片切换代码是一款基于jquery实现的左右透明遮罩图片按钮控制图片左右切换效果代码。jQuery遮罩效果图片切换左右箭头

    <script type="text/javascript">
    $(document).ready(function(){
    $(".teachers_team").css("width",$(window).width());
    $(window).resize(function(e) {
    $(".teachers_team").css("width",$(window).width());
    });
     
    //li的个数
    var len=$(".teachers-cont li").length;
    //向左箭头
    $("#prev").on("click",function(){
    //获取当前li的index
    var cur=$(".teachers-cont li[class='on']").index();
    //如果不是第一个
    if(cur!=0){
    $(".teachers-cont li").eq(cur-1).addClass("on").siblings().removeClass("on");
    $(".teachers_box").animate({marginLeft:"-"+(cur-1)*600+"px"});
    }else{
    return;
    }
    });
     
    //向右箭头
    $("#next").on("click",function(){
    //获取当前li的index
    var cur=$(".teachers-cont li[class='on']").index();
    //如果不是最后一个
    if(cur!=(len-1)){
    $(".teachers-cont li").eq(cur+1).addClass("on").siblings().removeClass("on");
    $(".teachers_box").animate({marginLeft:"-"+(cur+1)*600+"px"});
    }else{
    return;
    }
    });
     
    })
    </script>
    jquery左右透明遮罩图片切换代码由源码搜藏网整理,转载请注明出处http://www.codesocang.com/texiao/jQuerytexiao/10352.html 源码搜藏承诺:本站所有资源无病毒,无弹窗,无干扰链接!