$(function(){ navevents() $(window).resize(function(){ navevents() }) function navevents(){ if($(window).width()>1199){ $('.header-nav ul li').mouseenter(function(){ $('header').addclass('on') // $('header').find('.sub-nav').addclass('on') $(this).siblings().find('.sub-nav').removeclass('on') $(this).find('.sub-nav').addclass('on') }) $('.cover_bg').mouseleave(function(){ $('header').removeclass('on') $('header').find('.sub-nav').removeclass('on') }) $('header').mouseleave(function(){ $('header').removeclass('on') $('header').find('.sub-nav').removeclass('on') }) $(document).scroll(function(){ var scrollh = $(document).scrolltop(); if(scrollh>0){ $('header').addclass('active') }else{ $('header').removeclass('active') } }); //底部 $('.code-txt .code-txt-item').click(function(){ let index= $(this).index() $(this).addclass('active').siblings().removeclass('active') $('.code-img img').eq(index).addclass('active').siblings().removeclass('active') }) //查找 $('.search-icon-gray').click(function(){ $('.search-box').addclass('on') }) $('.search-close').click(function(){ $('.search-box').removeclass('on') }) // 语言切换 $('.lan').mouseenter(function(){ $(this).find('a').siblings('.lan-box').stop().slidedown() }) $('header').mouseleave(function(){ $('.lan-box').stop().slideup() }) $('.lan-box').mouseleave(function(){ $(this).stop().slideup() }) } } if($(window).width()< 1200){ var navli = $('.header-nav li').length for(var i =0; i< navli; i++){ var suba = $('.header-nav li').eq(i).find('.sub-nav .nav-item a').length if(suba >0){ $('.header-nav li').eq(i).find('a:first').removeattr('href'); } } $('.nav-icon').click(function(){ $(this).stop().toggleclass('on') $('.header-nav').stop().slidetoggle('slow') }) $('.header-nav ul li').click(function(){ $(this).toggleclass('on') $(this).find('.sub-nav').toggleclass('on') }) $('.header-nav .sub-nav .nav-item a').click(function(){ $('.nav-icon').stop().toggleclass('on') $('.header-nav').stop().slidetoggle('slow') }) $('.footer-list ul li p').click(function(){ $(this).stop().toggleclass('on') $(this).next('.footer-sub').stop().slidetoggle() }) } // 视频中心 // $('.about-v-cover').click(function(){ // $(this).addclass('dnone') // $('.ab-video').trigger( // "play" // ); // }) // 视频弹出框 $('.about-v-cover').on('click', function () { event.stoppropagation(); var src = $(this).data('src'); var video = $('.sha_video video')[0]; $('.sha_video').fadein(500).children('div').addclass('on'); $('.sha_video video').attr('src', src); video.currenttime = 0; video.play(); }); $('.video_btn_close').on('click', function () { var video = $('.sha_video video')[0]; $('.sha_video').fadeout(500).children('div').removeclass('on'); video.pause(); }); // 回到顶部 $('.go-top').click(function(){ $('html , body').animate({scrolltop: 0},'slow'); }) $('.go-bottom').click(function(){ $('html , body').animate({scrolltop: document.getelementsbytagname('body')[0].scrollheight},'slow'); }) $(document).scroll(function(){ var scrollh = $(document).scrolltop(); if(scrollh >500){ $(".asidebox").fadein("slow"); }else{ $(".asidebox").fadeout("slow"); } }); })