$(function() { //头图 $('.banner .slick-images').slick({ slidesToShow: 1, slidesToScroll: 1, dots: true, arrows:true, centerMode: true, centerPadding: 0, focusOnSelect: true, appendArrows:'.banner .arrow_box' }); $('.article_list041 ul').slick({ slidesToShow: 1, slidesToScroll: 1, dots: false, arrows:true, appendArrows:'.article_list041 .arrow_box', // variableWidth: true, // centerMode: true, // centerPadding: '48px', focusOnSelect: true, asNavFor:'.article_list042 ul', autoplay:true, autoplaySpeed:5000, responsive: [ { breakpoint: 992, settings: { variableWidth: false } } ] }); $('.article_list042 ul').slick({ slidesToShow: 1, slidesToScroll: 1, dots: false, arrows:false, fade:true, // infinite:false, // variableWidth: true, centerMode: true, centerPadding: 0, asNavFor:'.article_list041 ul', autoplay:true, autoplaySpeed:5000 // vertical:true, // focusOnSelect: true }); mpic(); function mpic(){ var B=document.getElementById("pic"); var L=document.getElementById("left"); var R=document.getElementById("right"); R.innerHTML=L.innerHTML; var timer1=setInterval(scroll,20); function scroll(){ if(L.offsetWidth-B.scrollLeft<=0){ B.scrollLeft=0; }else{ B.scrollLeft++; }}; B.onmouseover=function(){ clearInterval(timer1); } B.onmouseout=function(){ timer1=setInterval(scroll, 30); }; } });