SuperSlidev2.1 轮播图片和无缝滚动

使用方法,狠狠的点击下面链接

http://down.admin5.com/demo/code_pop/18/562/index.html

简单使用方法如下

html











     

    js

    /***全屏轮播banner效果***/
    $(".fullSlide").hover(function(){
    $(this).find(".prev,.next").stop(true, true).fadeTo("show", 0.5)
    },
    function(){
    $(this).find(".prev,.next").fadeOut()
    });
    $(".fullSlide").slide({
    titCell: ".hd ul",
    mainCell: ".bd ul",
    effect: "fold",
    autoPlay: true,
    autoPage: true,
    trigger: "click",
    startFun: function(i) {
    var curLi = jQuery(".fullSlide .bd li").eq(i);
    if ( !! curLi.attr("_src")) {
    curLi.css("background-image", curLi.attr("_src")).removeAttr("_src")
    }
    }
    });
    /***东钿报道轮播效果***/
    $(".dtbd").slide({titCell: ".hd li",mainCell:".bd ul",autoPlay:true});

    /***合作伙伴滚动图片***/
    $(".hzhb").slide({mainCell:".bd ul",autoPlay:true,effect:"leftMarquee",vis:6,interTime:50,trigger:"click",prevCell:".prev",nextCell:".next"});

     

    转载于:https://www.cnblogs.com/qiao20/p/5683596.html

    你可能感兴趣的:(SuperSlidev2.1 轮播图片和无缝滚动)