$("#jCarouselLite1").jCarouselLite({
    speed: 500,           //滚动速率,数值越小越快
    mouseWheel: true,     //鼠标滚轮切换
    btnNext: "#next1",    //下页按钮
    btnPrev: "#prev1"     //上页按钮
});
mouseWheel功能必须加载jquery mousewheel插件


$("#jCarouselLite2").jCarouselLite({
    btnNext: "#next2",
    btnPrev: "#prev2",
    easing: "bounceout",
    speed: 1000
});
easing功能必须加载jquery easing1.1版本插件


$("#CarouselLite3").jCarouselLite({
    btnNext: "#next3",
    btnPrev: "#prev3",
    speed: 800,
    easing: "backout"
});

$(".widget img").click(function() {
    $(".widget .mid img").attr("src", $(this).attr("src"));
})
代码整理:代码库 来源:jcarousellite插件官网
*尊重他人劳动成果,转载请自觉注明出处!注:此代码仅供学习交流,请勿用于商业用途。