123456789101112131415161718192021222324252627282930313233 |
- $(function(){
- $('.header_menu,.y_publicright a').on('click',function(){
- var that = $(this);
- if(that.hasClass('ion')){
- that.removeClass('ion');
- $('.y_sidebar').animate({left:"100%"});
- }else{
- that.addClass("ion");
- $('.y_sidebar').animate({left:"0%"});
- }
- shanwutong(); //修改商务通层级 /js/nav.js
-
- })
- $('.y_sidebar_bg').on('click',function(){
- $(this).parent().animate({left:"100%"});
- if($('.header_menu').hasClass('ion')){
- $('.header_menu').removeClass('ion');
- }
- })
- setInterval(function(){
- $('#LXB_CONTAINER_SHOW').css({"bottom":"63px","top":"auto","left":"0","right":"auto"});
- },80);
- })
- function shanwutong(){
- setTimeout(function(){
- $('#LXB_CONTAINER_SHOW,#LRfloater3').css({'z-index':'5'});
- },80);
- }
|