window.onload; $(window).resize(wah); function wah() { } $(window).scroll(function(event) { // if ($(window).scrollTop() > 0) { // $('.head-box').addClass('active'); // } else { // $('.head-box').removeClass('active'); // } if ($(window).scrollTop() > 400) { $('.gotop').fadeIn(); } else { $('.gotop').fadeOut(); } }) $(window).on("load", function() { setTimeout(function() { $('.loading').fadeOut(); }, 4000) }) $(function() { $('.nav_btn').click(function() { if ($('.nav_btn').attr('class') == 'nav_btn cur') { $('.nav_btn').removeClass('cur'); $('.nav').removeClass('active'); $('body').css('overflow', 'inherit'); } else { $('.nav_btn').addClass('cur'); $('.nav').addClass('active'); $('body').css('overflow', 'hidden'); } }); $('.home-box2 ul li').hover(function(){ if($(this).attr('class') != 'active'){ $('.home-box2 ul li').removeClass('active').eq($(this).index()).addClass('active') } }) $('.home-box4 .lower-box .pull-right ul li').removeClass('active').eq(0).addClass('active') $('.home-box4 .lower-box .pull-left .center-block').hide().eq(0).show(); $('.home-box4 .lower-box .pull-right ul li').hover(function(){ if($(this).attr('class') != 'active'){ $('.home-box4 .lower-box .pull-right ul li').removeClass('active').eq($(this).index()).addClass('active') $('.home-box4 .lower-box .pull-left .center-block').hide().eq($(this).index()).fadeIn(); } }) $('.about-box2 .lower-box').each(function(){ var that = $(this) that.find('.pull-right ul li').removeClass('active').eq(0).addClass('active') that.find('.pull-left ul li').hide().eq(0).show(); that.find('.pull-right ul li').click(function(){ if($(this).attr('class') != 'active'){ that.find('.pull-right ul li').removeClass('active').eq($(this).index()).addClass('active') that.find('.pull-left ul li').hide().eq($(this).index()).show(); } }) }) $('.marketing-box2 .center-block ul li').each(function(){ var that = $(this) that.find('.top-box').click(function(){ if(that.attr('class') != 'active'){ that.addClass('active') that.find('.top-box .pull-right').text('收起') that.find('.lower-box').stop(true,false).slideDown() }else{ that.removeClass('active') that.find('.top-box .pull-right').text('展开') that.find('.lower-box').stop(true,false).slideUp() } }) }) $('.about-box5 .video-box').click(function(){ $(this).find('i').fadeOut() $(this).find('video').get(0).play() }) $('.ewm_tc').click(function() { $(this).fadeOut(); }) if ($(window).width() <= 768) { $('.home-box1 .center-block li').addClass('active') $('.nav ul li .nav-second a').click(function(){ $('.nav_btn').removeClass('cur'); $('.nav').removeClass('active'); $('body').css('overflow', 'inherit'); }) $('.nav ul li span.cur').each(function(){ $(this).find('a').append('') }) $('.nav ul li span.cur a i').click(function(){ return false }) } else { $('.nav ul li').each(function(){ var that = $(this) that.hover(function(){ if(that.attr('class') != 'cur'){ $('.nav ul li').removeClass('cur').eq(that.index()).addClass('cur') if(that.find('span').attr('class') == 'two-menu'){ $('.head-two').fadeIn() }else{ $('.head-two').fadeOut() } } }) }) $('.head-two').mouseleave(function(){ $('.head-two').fadeOut() $('.nav ul li').removeClass('cur') }) } $(".gotop").click(function() { var anh = $("body").offset().top; $("html,body").stop().animate({ scrollTop: anh }, 1000); scrollAnh = 0; scrollNum = 0; }); });