$(document).ready(function(){ $(".mobile_menu,#xuanfu .menu1023").click(function(){ $(".mobile_menu_sub").slideToggle("slow"); }); $(window).resize(function () { var newWindowWidth = $(window).width(); if (newWindowWidth > 1199) { $(".mobile_menu_sub,#xuanfu").hide(); } }); $('.main-menu ul.list-inline > li').hover(function(){ $(this).find('.main-menu-sub').stop(true,true).slideDown("fast"); }, function(){ $(this).find('.main-menu-sub').slideUp("fast"); }); // $(window).scroll(function(){ // var newWindowWidth = $(window).width(); // if ($(window).scrollTop()>100 && newWindowWidth < 1199){ // $("#xuanfu").fadeIn(1000); // }else{ // $("#xuanfu").fadeOut(1000); // } // }); $("#xuanfu").click(function(){ $('html,body').animate({scrollTop:0},500); return false; }); $("#pro1,#pro2,#pro3,#pro4").click(function(){ let pro=$(this).attr('id'); let height = $("#"+pro+"_c").offset().top; console.log(height); $('html,body').animate({scrollTop:height},500); $('.menu a').removeClass('active'); $(this).addClass('active'); return false; }); $("#tuandui_ren").owlCarousel({ loop:true, items: 5, autoplay: true, autoplaySpeed:900, autoplayTimeout:4000, autoplayHoverPause:true, dots:true, responsive:{ 0:{ items:2, nav:false, }, 600:{ items:5, nav:false, } } }); $("#index_banner").owlCarousel({ loop:true, items: 1, autoplay: true, autoplaySpeed:900, autoplayTimeout:4000, }); $("#index_qie").owlCarousel({ loop:true, items: 3, autoplay: true, autoplaySpeed:900, autoplayTimeout:4000, autoplayHoverPause:true, responsive:{ 0:{ items:1, nav:false, dots:true }, 600:{ items:3, nav:false, dots:false } } }); var owl = $('#index_qie'); $(".index_xiangmu .left_btn").click(function(event) { owl.trigger('prev.owl.carousel',[500]); }); $(".index_xiangmu .right_btn").click(function(event) { owl.trigger('next.owl.carousel',[500]); }); $("#anli_qie").owlCarousel({ loop:true, items: 1, autoplay: true, autoplaySpeed:900, autoplayTimeout:4000, autoplayHoverPause:true }); var owl = $('#anli_qie'); $(".anli_page .left_btn").click(function(event) { owl.trigger('prev.owl.carousel',[500]); }); $(".anli_page .right_btn").click(function(event) { owl.trigger('next.owl.carousel',[500]); }); $("#job tbody tr:nth-child(odd)").click(function(event) { $("#job tbody tr:nth-child(odd)").css('background-color', '#fff'); $("#job tbody tr:nth-child(even)").hide(); $("#job tbody tr:nth-child(odd)").find('span').removeClass('glyphicon-chevron-down'); $("#job tbody tr:nth-child(odd)").find('span').addClass('glyphicon-chevron-up'); $(this).next('tr').show(); $(this).css('background-color', '#efefef'); $(this).find('span').removeClass('glyphicon-chevron-up'); $(this).find('span').addClass('glyphicon-chevron-down'); }); });