bootstrap 3上的调整大小菜单从左向右滑动

时间:2014-01-30 09:44:10

标签: javascript jquery html css twitter-bootstrap

当在小窗口中调整浏览器大小时,可以修改bootstrap js以便从左到右而不是从上到下滑动该菜单。 有人试过吗?

从左到右滑动 Here is a small example 但我需要在bootstrap.js中修改此内容

 $(document).ready(function() {
      $('#slideleft button').click(function() {
        var $lefty = $(this).next();
          console.log( parseInt($lefty.css('left'),10) );
        $lefty.animate({
          left: parseInt($lefty.css('left'),10) == 0 ?
            -$lefty.outerWidth() :
            0
        });
      });
    });

1 个答案:

答案 0 :(得分:0)

为此,我不会使用导航栏。我不认为修改bootstrap.js是个好主意。 你看过这个bootstrap的例子吗? http://getbootstrap.com/examples/offcanvas/