// JavaScript Document $(function(){ $('.banner ul').slick({ dots:false, arrows:true, autoplay:true, slidesToShow: 1, autoplaySpeed: 3000, pauseOnHover:true, lazyLoad: 'ondemand', }); $('.special ul').slick({ dots:true, arrows:false, autoplay:true, rows:1, slidesToShow:4, slidesToScroll:1, infinite:true, autoplaySpeed:3000, lazyLoad: 'ondemand', pauseOnHover:false, responsive: [ { breakpoint:1200, settings: { rows:1, slidesToShow:3, slidesToScroll:3, dots:true, arrows:false, } }, { breakpoint:756, settings: { rows:1, slidesToShow:1, slidesToScroll:1, dots:true, arrows:false, } } ] }); //资源共享 var myVideo = $('#myVideo'); $('.video .icon').click(function() { $(this).parent(".video").find("video")[0].play(); // $("video")[0].play(); $(this).parent(".video").find("video").css("opacity","1") $(this).hide(); $(myVideo).attr('controls', true); }); $('.input_link i').click(function() { $(this).next("ul").toggle(); $(this).parent().siblings().children('ul').slideUp(); }) jQuery(".item03").slide({titCell:".txt", targetCell:".pic_t",defaultIndex:0,effect:"slideDown",delayTime:300,returnDefault:true}); });