nav.js 797 B

123456789101112131415161718192021222324252627282930313233
  1. $(function(){
  2. $('.header_menu,.y_publicright a').on('click',function(){
  3. var that = $(this);
  4. if(that.hasClass('ion')){
  5. that.removeClass('ion');
  6. $('.y_sidebar').animate({left:"100%"});
  7. }else{
  8. that.addClass("ion");
  9. $('.y_sidebar').animate({left:"0%"});
  10. }
  11. shanwutong(); //修改商务通层级 /js/nav.js
  12. })
  13. $('.y_sidebar_bg').on('click',function(){
  14. $(this).parent().animate({left:"100%"});
  15. if($('.header_menu').hasClass('ion')){
  16. $('.header_menu').removeClass('ion');
  17. }
  18. })
  19. setInterval(function(){
  20. $('#LXB_CONTAINER_SHOW').css({"bottom":"63px","top":"auto","left":"0","right":"auto"});
  21. },80);
  22. })
  23. function shanwutong(){
  24. setTimeout(function(){
  25. $('#LXB_CONTAINER_SHOW,#LRfloater3').css({'z-index':'5'});
  26. },80);
  27. }