var rp = {}; //初始化 rp.init = function(){ rp.events(); //事件总体控制 } //事件总体控制 rp.events = function(){ rp.nav(); //首页导航 rp.resize(); } rp.resize = function(){ function resize(){ if($(window).width()>991){ $('.nav ').removeattr("style"); } } resize(); $(window).resize(function(){ resize(); }); } //导航 rp.nav = function(){ // var mouseover_tid = null; // $('.header .hasnav').each(function(index){ // i = index; // $(this).hover(function(){ // var _self = this; // cleartimeout(mouseover_tid); // $(_self).find(".snav").show().animate({"top":57,"opacity":1}); // },function(){ // var _self = this; // mouseover_tid = settimeout(function() { // $(_self).find(".snav").stop().animate({"top":80,"opacity":0},function(){ // $(".snav").hide(); // }); // }, 300); // } // ); // $('.header .snav').hover(function(){ // cleartimeout(mouseover_tid); // $(this).show(); // },function(){ // $(this).animate({"top":80,"opacity":0},function(){$(".snav").hide();}); // }) // }); $('.nav_ico').click(function(){ $('.nav').slidetoggle(); }) $('.c_title').click(function(){ if($(window).width() <= 750){ $('.c_left ul').slidetoggle(); } }) $('.ewm_touch').hover(function(){ $('.c_footer li .ewm').css('z-index',9); },function(){ $('.c_footer li .ewm').css('z-index',8); }) $(".i-header .btn").click(function(){ $(this).siblings("nav").stop().slidetoggle(); }); } $(function(){ rp.init(); });