$(function () { $('.banner>.slick').slick({ slidesToShow: 1, slidesToScroll: 1, arrows: false, dots: true, autoplay: true, customPaging: function (slider, i) { return '
' + ((i + 1) > 9 ? (i + 1) : '0' + (i + 1)) + ' ' + "
"; } }); $('.s2-lt>ul').slick({ slidesToShow: 1, slidesToScroll: 1, arrows: true, dots: false, autoplay: true, }); $(".s3-tit ul li").mouseenter(function () { $(this).addClass("on").siblings().removeClass("on"); var i = $(this).index(); $(".s3-c>div").css("transform", 'translateX(' + (-25 * i) + '%)') }) });