$(function () { $('.mbanner .news_list').slick({ infinite: true, slidesToShow: 1, autoplay: true, autoplaySpeed: 10000, slidesToScroll: 1, dots: true, arrows: true, }); setTimeout(function(){ $('.mbanner .news_list').addClass("aa") },300) $('.post-11 .news_list.list1').slick({ infinite: true, slidesToShow: 1, autoplay: true, autoplaySpeed: 10000, slidesToScroll: 1, dots: true, arrows: false, }); $('.post-31 .news_list').slick({ infinite: true, slidesToShow: 3, autoplay: true, autoplaySpeed: 10000, slidesToScroll: 1, dots: false, arrows: true, centerMode:true, responsive: [ { breakpoint: 999, settings: { slidesToShow: 2, } }, { breakpoint: 479, settings: { slidesToShow: 1, } } ] }); $(".mbanner .news .news_video").each(function () { if ($(this).find("video").attr("src") == "") { $(this).hide(); $(this).siblings(".news_imgs").show(); } else { $(this).show(); $(this).siblings(".news_imgs").hide(); } }) $(".border-path").each(function () { const parent = $(this).parents(".linebox") $(this).css("stroke-dasharray", (parent.width() + parent.width()) * 2) $(this).css("stroke-dashoffset", (parent.width() + parent.width()) * 2) }) });