//pc导航定位 $(document).ready(function() { $(document).ready(function () { $('.menupc li a').each(function () { if ($($(this))[0].href == String(window.location)) $(this).addClass('current').attr('href', 'javascript:void(0);'); }); }); }); //nation导航定位 $(document).ready(function() { $(document).ready(function () { $('.nation li a').each(function () { if ($($(this))[0].href == String(window.location)) $(this).addClass('current').attr('href', 'javascript:void(0);'); }); }); }); //pc导航下拉 $(document).ready(function() { $(function(){ $(".menupc > li").hover(function(){ $(this).find("a:first").addClass("hover") $(this).find(" ul ").addClass("subnav") },function(){ $(this).find("a:first").removeClass("hover") $(this).find(" ul ").removeClass("subnav") }) }) }); //手机导航 jQuery(document).ready(function( $ ) { $("#mmenu").mmenu({ "extensions": [ "effect-menu-slide", "effect-listitems-slide", "fx-menu-zoom", "fx-panels-zoom", "theme-dark" ], "iconPanels": true, "offCanvas": { position: "right" }, }); }); //banner $(document).ready(function() { $(function(){ $('.banner-ul').owlCarousel({ items: 1, itemsDesktop: [1920, 1], itemsDesktopSmall: [980, 1], itemsTablet: [768, 1], itemsMobile: [479, 1], autoPlay: 5000, autoHeight: true, //transitionStyle: 'fade', pagination: true, navigation: false, navigationText: [" ", " "] }); }); }); //ibanner $(document).ready(function() { $(function(){ $('.banner-uls').owlCarousel({ items: 1, itemsDesktop: [1920, 1], itemsDesktopSmall: [980, 1], itemsTablet: [768, 1], itemsMobile: [479, 1], autoPlay: 5000, autoHeight: true, //transitionStyle: 'fade', pagination: true, navigation: false, navigationText: [" ", " "] }); }); }); //内页导航定位 $(document).ready(function() { $(document).ready(function () { $('.inner_title li a').each(function () { if ($($(this))[0].href == String(window.location)) $(this).addClass('current').attr('href', 'javascript:void(0);'); }); }); }); //招聘 $(document).ready(function() { if ($('.services-list').size() > 0) { $('.services-list').accordion({ autoHeight: false, create: function (event, ui) { $('.services-list li:first a').addClass('active'); }, changestart: function (event, ui) { ui.oldHeader.children('a').animate({ 'left' : 561 }, function () { $(this).removeClass('active').animate({ 'left' : 600 }); }); ui.newHeader.children('a').stop(true, true).animate({ 'left' : 561 }, function () { $(this).addClass('active').animate({ 'left' : 600 }); //$(this).stop(true, true).animate({ 'left' : 600 }); }); return true; }, change: function (event, ui) { return true; } }); } }); //产品导航定位 $(document).ready(function() { $(document).ready(function () { $('.pro_fl li a').each(function () { if ($($(this))[0].href == String(window.location)) $(this).addClass('current').attr('href', 'javascript:void(0);'); }); }); });