jquery(document).ready(function($) { $('.header-menu-con').slicknav({ label: '', prependto:'.mini' }); $('.wechat').hover(function() { $(this).find('.img-wechat').show(); }, function() { $(this).find('.img-wechat').hide(); }); //导航下标 $(".sub-menu").prepend(''); $('.header-menu-con li').hover(function() { $(this).find('ul').show(); }, function() { $(this).find('ul').hide(); }); $('.header-menu>ul>li').hover(function(){ $(this).addclass('on'); $(this).siblings(".current-menu-item").css("background-color","#fff").children().css("color","#666"); },function(){ $(this).removeclass('on'); $(this).siblings(".current-menu-item").css("background-color","#f00").children().css("color","#fff"); }); var swiper = new swiper('#slider .swiper-container', { pagination: '#slider .swiper-pagination', paginationclickable: true, nextbutton: '.icon-arrows-right', prevbutton: '.icon-arrows-left', loop: true, autoplay: 5000,//可选选项,自动滑动 }); var swiper = new swiper('#idx-images .swiper-container', { pagination: '#idx-images .swiper-pagination', paginationclickable: true, loop: true, autoplay: 5000,// }); });