nav.js 223 B

12345678910
  1. $(function(){
  2. $('.header_menu,.y_publicright a').on('click',function(){
  3. $('.y_sidebar').animate({left:"0%"});
  4. })
  5. $('.y_sidebar_bg').on('click',function(){
  6. $(this).parent().animate({left:"100%"});
  7. })
  8. })