$(function() { var windowwidth = $(window).width(); if(windowwidth < 992) { $("#menu").mmenu({ "offcanvas": { "position": "right" } }); } // 导航 $('.header .nav li').hover(function() { $('.header .nav li .dropdown').stop().slideup(); $(this).find('.dropdown').stop().slidedown(); }, function() { $('.header .nav li .dropdown').stop().slideup(); }) //搜索 $('.header .search-btn').click(function() { $(this).siblings('.search-box').toggleclass('search-box-on') }) // 轮播 var carousel = new swiper('.carousel .swiper-container', { autoplay: 4000, prevbutton: '.carousel-prev', nextbutton: '.carousel-next', pagination: '.carousel-pagination .box', paginationclickable: true, }) $('.index-b-2-wap .tab-top li').click(function() { $('.index-b-2-wap .tab-top li').removeclass('active'); $(this).addclass('active'); $('.index-b-2-wap .tab-body .body-list').hide(); $('.index-b-2-wap .tab-body .body-list').eq($(this).index()).show() }) // 手机面包屑 var cl = $('.crumbs .right li').length; if(cl>3){ $('.crumbs .right i').css({ "display": "block" }) } $('.crumbs .right i').click(function() { if($('.crumbs').css('height') == '50px') { $('.crumbs').css({ "height": "auto" }) } else { $('.crumbs').css({ "height": "50px" }) } }) // 首页新闻切换 $('.index-news .tab-top li').click(function() { $('.index-news .tab-top li').removeclass('active'); $(this).addclass('active'); $('.index-news .tab-body .body-list').hide(); $('.index-news .tab-body .body-list').eq($(this).index()).show(); var index = $(this).index() + 1; var carousel = new swiper('.index-news .tab-body .body-list:nth-child(' + index + ') .swiper-container', { pagination: '.img-pagination', paginationclickable: true, autoplay:3000, }) }) // 首页新闻轮播 var carousel = new swiper('.index-news .tab-body .body-list:first-child .swiper-container', { pagination: '.img-pagination', paginationclickable: true, autoplay:3000, }) $('.index-b-2 .left li').hover(function() { $('.index-b-2 .left li').removeclass('active'); $(this).addclass('active'); }) // 人力资源 $('.recruit .recruit-list .list-top .drop').on('click', function() { if($(this).parents('.list-li').find('.list-body').css('display') == 'none') { $('.recruit .recruit-list .list-li .list-body').slideup(); $(this).parents('.list-li').find('.list-body').slidedown(); } else { $(this).parents('.list-li').find('.list-body').slideup(); } }) if(windowwidth < 1200) { $('.recruit .recruit-list .list-body .right .apply a').click(function() { var index = layer.open({ type: 1, title: '', area: ['90%', ''], closebtn: 0, shadeclose: true, shade: 0, content: $(this).parents('.list-li').find('.box') }); $('.recruit .recruit-list .box .top span').on('click', function() { layer.close(index) }) }) } else { $('.recruit .recruit-list .list-body .right .apply a').click(function() { var index = layer.open({ type: 1, title: '', area: ['1160px', '715px'], closebtn: 0, shadeclose: true, shade: 0, content: $(this).parents('.list-li').find('.box') }); $('.recruit .recruit-list .box .top span').on('click', function() { layer.close(index) }) }) } })