$.fn.nav = function(opts) { var $elm = $(this); var _true = false; $elm.find('ul.first > li').hover(function() { if ($(this).hasClass('cur')) { _true = false; } else { _true = true; $(this).addClass('cur'); } if ($(this).find('.second').length > 0) { $(this).find('.second').show(); } }, function() { if (_true) { $(this).removeClass('cur'); } if ($(this).find('.second').length > 0) { $(this).find('.second').hide(); } }); } //tab切换 $.fn.tabSlider = function(tabTag, tabCon) { var elm = $(this); var i = 0; tabTag.each(function() { if ($(this).hasClass('cur')) { i = $(this).index(); showCurrent(i); } $(this).hover(function() { i = $(this).index(); showCurrent(i); }); }); function showCurrent(i) { tabTag.removeClass('cur'); tabTag.eq(i).addClass('cur'); tabCon.css('display', 'none'); tabCon.eq(i).css('display', 'block'); } } $(function() { //banner if ($('#banner').length > 0) { $('#banner').fadeSlider({ t:5500, t2:750, cur:true }); } $('#bu2').hover(function() { $(this).find('.bu2_con').show(); }, function() { $(this).find('.bu2_con').hide(); }); if ($('#i_tab2').length > 0) { $('#i_tab2').tabSlider($('#i_tab2 .tab_tag a'), $('#i_tab2 .tab_con .con')); } if ($("#banner_tab").length > 0) { $('#banner_tab').tabSlider2($('#banner_tab .tab_tag a'), $('#banner_tab .tab_con .con')); } //导航 if ($('#nav').length > 0) { $('#nav').nav(); } //box2 $('#box2 a.ico2').click(function() { if ($(this).hasClass('ico2_show')) { $(this).parents('li').addClass('cur'); $(this).removeClass('ico2_show').attr('title', 'off'); $(this).addClass('ico2_hide'); } else { $(this).parents('li').removeClass('cur'); $(this).removeClass('ico2_hide').attr('title', 'on'); $(this).addClass('ico2_show'); } }); //list $('.list').find('li').hover(function() { $(this).addClass('cur'); }, function() { $(this).removeClass('cur'); }); //search $('.inp_search').each(function(i) { var _val = $(this).val(); $(this).focus(function() { if ($(this).val() == _val) { $(this).val(''); } }).blur(function() { if ($(this).val() == '') { $(this).val(_val); } }); }); //tabSlider $('#cons').tabSlider($('#cons .tab_tag a'), $('#cons .tab_con .con')); //select $('.select_box').each(function() { var $inp = $(this).find('input'); var $opts = $(this).find('.select_options'); $inp.click(function() { if ($opts.is(':hidden')) { $opts.show(); } else { $opts.hide(); } }); $opts.find('li').click(function() { var _val = $(this).find('a').text(); $inp.attr('value', _val); $opts.hide(); }); }); //cons_list $("#cons_list").find('li').each(function() { var $thisLi = $(this); $(this).find('h3').click(function() { if ($thisLi.hasClass('cur')) { $thisLi.removeClass('cur'); } else { $thisLi.addClass('cur'); } }); }); //i_slider if ($('#i_slider').length > 0) { $('#i_slider').slider2({ t : 4500, t2 : 750 }); } $(':input').each(function() { var _val = $(this).val(); $(this).focus(function() { if ($(this).val() == _val) { $(this).val(''); } }).blur(function() { if ($(this).val() == '') { $(this).val(_val); } }); }); $('#art_slider').slider3(); });