补充工具栏事件不起作用?

时间:2016-05-20 13:33:12

标签: jquery

点击边栏上的图标,跟进jquery效果从右向左滑动。但对应两个事件?停止工作后?See the problem here



$(document).ready(function() {  
    $('.menu-top-parked-strucs').click(function() {
        $('.menu-sidebar-strucs').show('slide', { direction: 'right' }, 300);
        return false;
    });
    $('.screen-demarcated-strucs').click(function() {
        $('.menu-sidebar-strucs').animate({'right' : '-280px'}, 300);
    });  
});




1 个答案:

答案 0 :(得分:0)

尝试使用像这样的点击事件,并用

替换show
$(document).on('click', '.menu-top-parked-strucs', function() {
  $('.menu-sidebar-strucs').on('slide', { direction: 'right' }, 300);
 return false
});