最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Which slide out panel is compatible with bootstrap 3? - Stack Overflow

programmeradmin3浏览0评论

I was trying to use this slide out panel with Bootstrap, which give you the option to slide out from the right .html . but it doesnt seem patible. can someone remend which slide out panel I can use that is patible with bootstrap?

I was trying to use this slide out panel with Bootstrap, which give you the option to slide out from the right http://www.building58./examples/tabSlideOut.html . but it doesnt seem patible. can someone remend which slide out panel I can use that is patible with bootstrap?

Share Improve this question asked Mar 11, 2014 at 21:25 user244394user244394 13.4k25 gold badges84 silver badges142 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 14

A bit of CSS and jQuery are enough to rebuild this function. Take a look at my jsfiddle.

jQuery Snippet

    $('#opener').on('click', function() {       
    var panel = $('#slide-panel');
    if (panel.hasClass("visible")) {
        panel.removeClass('visible').animate({'margin-left':'-300px'});
    } else {
        panel.addClass('visible').animate({'margin-left':'0px'});
    }   
    return false;   
});

Full Example: http://jsfiddle/9Le8X/2/

发布评论

评论列表(0)

  1. 暂无评论