$(function () { $('.banner .slick').slick({ dots: true, arrows: false, autoplay: true, slidesToShow: 1, autoplaySpeed: 6000, pauseOnHover: false, speed: 1000, fade: true, cssEase: 'linear', lazyLoad: 'ondemand' }); $('.banner .slick').slick('slickGoTo', 0); $('.banner .slick .slick-current').addClass('img_scale'); $('.banner .slick').on('beforeChange', function (event, slick, currentSlide, nextSlide) { $('.banner .slick .slick-current').removeClass('img_scale'); }); $('.banner .slick').on('afterChange', function (event, slick, currentSlide) { $('.banner .slick .slick-current').addClass('img_scale'); }); //焦点图 $('.s1-l>ul').slick({ autoplay: true, dots: true, arrows: false, accessibility: true, speed: 1500 }); //教学科研 $('.s5-t>ul').slick({ // autoplay: true, slidesToShow: 1, slidesToScroll: 1, dots: false, arrows: true, accessibility: true, speed: 1500, asNavFor: '.slider-for>ul', }); $('.slider-for>ul').slick({ slidesToShow: 1, slidesToScroll: 1, infinite: false, arrows: false, fade: true, asNavFor: '.s5-t>ul' }); var dq_state = 1; state(); function state() { var all_len = $(".slider-for>ul li").length; var num = dq_state / all_len * 100; $(".s5-state span").css("width", num + '%') } $('.slider-for>ul').on("afterChange", function (item, index) { dq_state = index.currentSlide + 1; state() }) //学术报告 $('.s6-c>ul').slick({ // autoplay: true, slidesToShow: 4, slidesToScroll: 1, dots: false, arrows: true, responsive: [{ breakpoint: 1025, settings: { slidesToShow: 3, slidesToScroll: 1, } }, { breakpoint: 769, settings: { slidesToShow: 2, slidesToScroll: 1, } }, { breakpoint: 481, settings: { slidesToShow: 1, slidesToScroll: 1, } }] }); //专题 $('.s8-c>ul').slick({ // autoplay: true, slidesToShow: 3, slidesToScroll: 1, dots: true, arrows: false, responsive: [{ breakpoint: 769, settings: { slidesToShow: 2, slidesToScroll: 1, } }, { breakpoint: 481, settings: { slidesToShow: 2, slidesToScroll: 1, } }] }); //快速链接 $('.s9-c>ul').slick({ autoplay: true, slidesToShow: 11, slidesToScroll: 1, dots: true, arrows: false, responsive: [{ breakpoint: 1301, settings: { slidesToShow: 9, slidesToScroll: 1, } }, { breakpoint: 1025, settings: { slidesToShow: 7, slidesToScroll: 1, } }, { breakpoint: 769, settings: { slidesToShow: 5, slidesToScroll: 1, } } , { breakpoint: 481, settings: { slidesToShow: 4, slidesToScroll: 1, } }] }); });