// javascript document $(function(){ var _h = $(window).height(); _w = $(window).width(); var pmheight=parseint($(window).height()), pmwidth=parseint($(window).width()); //悬浮 $('.float_r li.ewm_1').hover(function(){ $(this).find('img').stop(true,true).fadein(400) },function(){ $(this).find('img').stop(true,true).fadeout(400) }) //导航菜单 var menuli = $('.header .boxr .menu_ul>li'); var menuliw = menuli.width(); var _winw = $(window).width(); var menucurrent = $('.head_menu .hover'); menuli.each(function(index, element) { $(this).find('dl dd a').last().css({'border':'none'}) }); // 导航下拉 menuli.hover( function(){ //alert() $(this).find('dl').stop(true,true).slidedown(200) },function(){ $(this).find('dl').stop(true,true).hide() }) //底部 $('.footer .con .linkbox p').click(function(){ $(this).toggleclass('cur').prev('.boxslide').stop(true,true).slidetoggle(300); }) $('body').bind('click',function(e){ if($(e.target).parents('.linkbox').length==0) { $('.boxslide').hide(); $('.footer .con .linkbox p').removeclass('cur'); } }); $('.footer .con .linkbox').find('.boxslide a').click(function(){ $('.boxslide').hide(); $('.footer .con .linkbox p').removeclass('cur'); }) //下拉菜单 /*$('.header .head_menu .ul_list>li.pro').hover(function(){ $(this).find('.dl_1 ').stop(true,true).animate({height:430},200); $('.hover_bg ').stop(true,true).animate({height:430},200) },function(){ $(this).find('.dl_1 ').stop(true,true).delay(10).animate({height:0},100); $('.hover_bg ').stop(true,true).delay(20).animate({height:0},200) });*/ $('.header .head_menu .ul_list>li.li').hover(function(){ $(this).find('.dl_1 ').stop(true,true).animate({height:430},200); $('.hover_bg ').stop(true,true).animate({height:430},200) },function(){ $(this).find('.dl_1 ').stop(true,true).delay(10).animate({height:0},10); $('.hover_bg ').stop(true,true).delay(20).animate({height:0},100) }); //to top function totopscroll2(){ var totop = $('.to_top2'); if ($(window).scrolltop()>200){ totop.fadein(200); } else{ totop.fadeout(100); } } $(window).bind('load',function(){ $(window).bind('scroll',function(){ totopscroll2(); }); $(window).trigger('scroll'); }); $(window).bind('load resize',function(){ var _h = $(window).height(); var head_h=$('.header').height(); var footer_h=$('.footer').height(); $('.resize_h').css({'min-height':_h-head_h-footer_h-1}); }) }); jquery(document).ready(function($){ $('.to_top').click(function(){$('html,body').animate({scrolltop: '0px'}, 500);}); $('.to_top2').click(function(){$('html,body').animate({scrolltop: '0px'}, 500);}); }); ; (function ($) { $.extend({ fnshowerror: function (errortxt) { $('.error_alert').remove(); var def =$('
').html(errortxt); $('body').append(def); def.fadein().delay(1500).fadeout(); }, }); })(jquery);