web-dev-qa-db-ja.com

Bootstrap 4右のナビゲーションバードロップダウンメニュー項目

下の写真にあるように、ベルのアイコンをクリックすると、アイコンの右下にドロップダウンメニューが表示されます。このドロップダウンメニューを右下ではなく左下に表示したいです。私は何をすべきか?

enter image description here

私のコードを見たいなら、それはphpで書かれています:

function navigation(){
    $output = "";
    $icons = ["user","bell","envelope","commenting"];
    $rows = [2,5,5,5];
    for ($i=0; $i < count($icons) ; $i++) {
      $output .= '<div class="dropdown">';
      $output .= '<a class="nav-item nav-link" data-toggle="dropdown">';
      $output .= '<i class="fa fa-'.$icons[$i].'"></i></a>';
      $output .= '<div class="dropdown-menu text-right">';
      for ($j=0; $j < $rows[$i] ; $j++) {
        $output .= '<a href="#" class="dropdown-item">'.($j+1).'</a>';
      }
      $output .= '</div>';
      $output .= '</div>';
    }
    return $output;
  }

そして、この出力はhtmlファイルにエコーされます:

<nav class="navbar">
  <div class="container">
    <div class="navbar-nav d-flex flex-row">
      <?= navigation() ?>
    </div>
  </div>
</nav>
15
eylay

使用 dropdown-menu-rightメニュー内のアイテムを右揃えにするクラス。

    <div class="dropdown-menu dropdown-menu-right text-right">
        <a class="dropdown-item" href="#">Link</a>
        <a class="dropdown-item" href="#">Link</a>
        <a class="dropdown-item" href="#">Link</a>
    </div>

http://codeply.com/go/6Mf9aK0P8G

33
Zim

Bootstrap4-Betaの更新

bootstrap4ベータのバグ があるため、追加する必要がありました

.dropdown-menu-right { 
    right: 0; 
    left: auto; 
}

それを機能させるために。

17
Javan R.

.dropdown-menu-rightクラスは、.navbar内にある場合、異なる動作をします。こちらのドキュメントの「Heads up」をご覧ください。

https://getbootstrap.com/docs/4.0/components/dropdowns/#menu-alignment

実際に解決するには、このクラスを使用します:

.navbar .dropdown-menu-right { 
    right: 0; 
    left: auto; 
}
4
Fred K

私のメニューはPHP-要素の数とドロップダウンの内容は修正されていません。

可能な場合はドロップダウンを中央に配置するソリューション、そうでない場合は左右に配置するからビューポートを超えないようにします

var $maxWidthElement = $('.navbar'),
    maxWidth = $maxWidthElement.width();

var positionDropdowns = function() {
    $('.dropdown-menu').each(function() {
        var $navItem = $(this).closest('.dropdown'),
            dropdownWidth = $(this).outerWidth(),
            dropdownOffsetLeft = $navItem.offset().left,
            dropdownOffsetRight = maxWidth - (dropdownOffsetLeft + dropdownWidth),
            linkCenterOffsetLeft = dropdownOffsetLeft + $navItem.outerWidth() / 2;

        if ((linkCenterOffsetLeft - dropdownWidth / 2 > 0) & (linkCenterOffsetLeft + dropdownWidth / 2 < maxWidth)) {
            // center the dropdown menu if possible
            $(this).css('left', -(dropdownWidth / 2 - $navItem.outerWidth() / 2));
        } else if ((dropdownOffsetRight < 0) & (dropdownWidth < dropdownOffsetLeft + $navItem.outerWidth())) {
            // set the dropdown menu to left if it exceeds the viewport on the right
            $(this).addClass('dropdown-menu-right');
        } else if (dropdownOffsetLeft + dropdownWidth > maxWidth) {
            // full width if the dropdown is too large to fit on the right
            $(this).css({
                left: 0,
                right: 0,
                width:
                    $(this)
                        .closest('.container')
                        .width() + 'px'
            });
        }
    });
};

var resizeTimer;

$(window).on('resize', function(e) {
    clearTimeout(resizeTimer);
    resizeTimer = setTimeout(function() {
        maxWidth = $maxWidthElement.width();
        positionDropdowns();
    }, 250);
});

positionDropdowns();
window.onresize = positionDropdowns;

https://codepen.io/migli/pen/RELPPj

0
migli