国产精品人成在线播放新网站,欧洲吸奶大片在线看,亚洲欧洲成人a∨在线,国产18禁黄网站免费观看

微信號(hào):

jquery圖片輪播(圖片切換)特效代碼(簡(jiǎn)潔可點(diǎn)擊)

2016/6/30 17:01:03

網(wǎng)站建設(shè)時(shí),經(jīng)常用到j(luò)query圖片輪播(圖片切換)特效代碼,網(wǎng)上很多jquery圖片輪播(圖片切換)特效代碼,但是使用起碼很不方便,以下jquery圖片輪播(圖片切換)特效代碼代碼可以改成自己想要的樣式:

html代碼:

        <div class="scroll_div">
            <ul class="pic">
                <li style="background:url(images/1.jpg) no-repeat center center;width:100%;height:600px;"></li>
                <li style="background:url(images/2.jpg) no-repeat center center;width:100%;height:600px;"></li>
                <li style="background:url(images/3.jpg) no-repeat center center;width:100%;height:600px;"></li>
                <li style="background:url(images/4.jpg) no-repeat center center;width:100%;height:600px;"></li>
            </ul>
            <ul class="btn" style="clear:both;">
            <li>項(xiàng)目一</li>
            <li>項(xiàng)目二</li>
            <li>項(xiàng)目三</li>
            <li>項(xiàng)目四</li>
            </ul>
            <div class="clear"></div>
            <div class="left">left</div><div class="right">right</div>
        </div>

css代碼:

    .scroll_div{width:100%; height:800px; margin:0 auto; position:relative; overflow:hidden;}
    .scroll_div .pic{height:600px; position:relative;width:100%;}
    .scroll_div .pic li{position:absolute; top:0; left:0; display:none;}
    
    .scroll_div .btn{width:1024px; text-align:center;}
    .scroll_div .btn li{width:173px; height:66px; display:block; float:left; text-align:center; color:#fff; font:18px/100% "微軟雅黑"; font-weight:bold; background:#008dd8; margin-bottom:10px; line-height:66px; cursor:pointer;}
    .scroll_div .btn li.on{background:#d73737;}
    .left{background:#d73737;width:173px;height:66px; cursor:pointer; text-align:center;}
    .right{background:#ff0000;width:173px;height:66px; cursor:pointer;text-align:center;}
    li {list-style:none;}
    .clear{clear:both;}

js代碼:

$(function(){
    var listLen = $(".pic li").length, i=0,setInter,speen = 3000;
    $(".btn li:last").css({"margin":"0px 0px 0px 0px"});
    $(".btn li:first").addClass("on");
    $(".pic li:first").show();

    $(".btn li").each(function(index,element){
        $(element).click(function(){
            i = index;
            $(this).addClass("on").siblings().removeClass("on");
            $(".pic li").eq(index).animate({opacity:"show"},300).siblings().animate({opacity:"hide"},300);
        })
        
        $(element).hover(function(){clearInterval(setInter);},function(){outPlay();});
        
    })
    
    $(".left").click(function(){
        if(i >0 ){i--;}else{i=listLen-1;};
        $(".btn li").eq(i).addClass("on").siblings().removeClass("on");
        $(".pic li").eq(i).animate({opacity:"show"},300).siblings().animate({opacity:"hide"},300);
    });
    
     $(".right").click(function(){
        if(i < listLen-1 ){i++;}else{i=0;};
        $(".btn li").eq(i).addClass("on").siblings().removeClass("on");
        $(".pic li").eq(i).animate({opacity:"show"},300).siblings().animate({opacity:"hide"},300);
    });
    out_fun = function(){
        if(i < listLen){i++;}else{i=0;};
        $(".btn li").eq(i).addClass("on").siblings().removeClass("on");
        $(".pic li").eq(i).animate({opacity:"show"},300).siblings().animate({opacity:"hide"},300);
    }
 
    outPlay = function(){
        setInter = setInterval("out_fun()",speen);
    }
    outPlay();
})

 

 

相關(guān)新聞: