jQuery(function() { var $banner = jQuery(".banner"), $bannerItem = jQuery(".banner .item"); // function initPro() { // if(!isMobile){ // $banner.css({width:win_width,"height":"auto"}); // }else{ // $banner.css({width:"auto","height":"auto"}); // } // } // initPro(); // jQuery(window).resize(function() { // initPro(); // }); $banner.slick({ autoplay: true, arrows: false, dots: true, infinite: true, easing: "easeInOutExpo", speed: 1000, autoplaySpeed: 5000, pauseOnHover: false, fade: true, draggable: false, touchMove: false }); $bannerItem.first().removeClass("slick-active"); setTimeout(function(){ $bannerItem.first().addClass("slick-active"); },100); jQuery(".ibox-performance").slick({ autoplay: false, speed: 1000, slidesToShow: 4, slidesToScroll: 2, dots: false, arrows: true, infinite:true, responsive: [ { breakpoint: 1440, settings: { slidesToShow: 3, slidesToScroll: 3 } }, { breakpoint: 1024, settings: { slidesToShow: 2, slidesToScroll:2 } }, { breakpoint: 640, settings: { slidesToShow: 1, slidesToScroll: 1 } } ] }); // jQuery('.ibox-about-c figure').click(function () { // smVideo.load({ // vcontainer: 'videobox', //视频容器 // vfiles: jQuery(this).attr("data-video"), //视频地址 // vfimg: jQuery(this).attr("data-img"), //视频缩略图(封面) // isautoplay: 'true' // }); // jQuery(".vwrap").fadeIn(); // }); jQuery(".ibox-new-c").slick({ autoplay: true, speed: 1000, slidesToShow: 3, slidesToScroll: 1, dots: false, arrows: true, infinite:true, vertical:true, draggable: false, touchMove: false, prevArrow: $('.inew-left'), nextArrow: $('.inew-right'), responsive: [ { breakpoint: 1024, settings: { autoplay: false } } ] }); });