$(function () { $('.head_link a').hover(function(){ $(this).addClass('hover'); },function(){ $(this).removeClass('hover'); }); $('.mian_nav > li').hover(function(){ // $(this).find(".sub_nav").slideDown(300); $(this).addClass('cur'); },function(){ $(this).removeClass('cur'); // $(this).find(".sub_nav").hide(); }); // $('.sub_nav').hover(function(){ // $(this).show(); // },function(){ // $(this).slideUp(200); // }); $('.subbox .menu a').hover(function(){ $(this).find('i').addClass('hover'); },function(){ $(this).find('i').removeClass('hover'); }); $('.tabnav li').mouseover(function () { var index = $('.tabnav li').index(this); $(this).addClass('cur'); $(this).siblings().removeClass("cur"); var infocon2 = $(this).parents('.i_con5').find('.piclist'); infocon2.hide().eq(index).show() }); $(".subnav a").hover(function () { $(this).addClass("hover") }, function () { $(this).removeClass("hover") }); $('.piclist .leftbtn').click(function () { var li_html = $(this).parents('.piclist').find('.intro_pic ul li').eq(0).html(); $(this).parents('.piclist').find('.intro_pic ul li').eq(0).remove(); $(this).parents('.piclist').find('.intro_pic ul').append("
  • " + li_html + "
  • ") }); $('.piclist .rightbtn').click(function () { var li_html = $(this).parents('.piclist').find('.intro_pic ul li').last().html(); $(this).parents('.piclist').find('.intro_pic ul li').last().remove(); $(this).parents('.piclist').find('.intro_pic ul').prepend("
  • " + li_html + "
  • ") }); $(window).scroll(function(){ if ($(window).scrollTop() > 100){ $('#goTop').fadeIn(500); } else { $('#goTop').fadeOut(500); } }); $('#goTop').click(function(){ if ($('html').scrollTop()) { $('html').animate({ scrollTop: 0 }, 1000); return false; } $('body').animate({ scrollTop: 0 }, 1000); return false; }) });