Which slide panel is compatible with boot 3?

I tried to use this slide panel with Bootstrap, which gives you the ability to slip out of the right http://www.building58.com/examples/tabSlideOut.html . but it does not seem compatible. can anyone recommend which slide panel I can use which is download compatible?

+4
source share
1 answer

A little CSS and jQuery is enough to rebuild this feature. 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.net/9Le8X/2/

+14
source

Source: https://habr.com/ru/post/1531246/


All Articles