轮播图(省代码方法)

$(function(){
        setInterval(function(){
            $("#lunbo_txt").animate({left:"-100%"},1000,function(){
                $("#lunbo_txt").css({left:0});
                $("#lunbo_txt li:nth-child(1)").appendTo("#lunbo_txt");
            })
        },3000)
    })
原文地址:https://www.cnblogs.com/han6054/p/5454355.html