layui.use(['carousel'], function(){ var carousel = layui.carousel; //建造实例 carousel.render({ elem: '#test1' ,width: '100%' //设置容器宽度 ,height: '549px' //设置容器宽度 ,arrow: 'always' //始终显示箭头 ,autoplay: 'false' //始终显示箭头 //,full: 'true' //切换动画方式 }); }); $(function(){ $('.banner4 .box1').hover(function(){ $('.banner4 .box1').removeclass('active'); $(this).addclass('active'); }) })