无论悬停位置Bootstrap如何,全宽下拉菜单

时间:2013-07-19 01:02:52

标签: jquery html css twitter-bootstrap drop-down-menu

目前我正在使用这个超级菜单

  

http://demo.shymarkets.com/codecanyon/mega/model-1/css/index.html

无论悬停位置如何,我都需要一个全宽下拉菜单。

首先,让我告诉你我在下拉菜单项上悬停的内容。

enter image description here

如您所见,当我将鼠标悬停在'4 COLS'时,它不会覆盖整个容器。下拉菜单的左侧缺失。

无论悬停位置如何,我希望它是全宽的。

我是通过更改custom.css文件中的值来实现的。

  

http://demo.shymarkets.com/codecanyon/mega/model-1/css/css/custom.css

/* drop-down menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  **left: -1px;**
  z-index: 1000;
  display: none;
  float: left;

左:-1px 更改为左:-120px 我得到了我想要的 enter image description here

然而,这次它既不是动态的,也不是响应的。

我想,必须计算前面菜单项的宽度并写入'左边:? px'自动或让我们以编程方式说我不知道​​。

也许这可以通过使用这种jquery方法来完成。

  

How to find the width of the child ul li a

这些也是我想要的一些例子。我只需要知道如何修改我的代码片段以便响应地改变悬停行为。

  

http://jsfiddle.net/jWSPz/4/    http://jsfiddle.net/jWSPz/9/

1 个答案:

答案 0 :(得分:4)

首先,演示站点不会将子菜单嵌套在当前菜单项下,而是有一个单独的子菜单容器。

其次,必须有一些JS用法,因为您的页面是响应式的,并且因为子菜单嵌套在您的菜单项中。

如果您想继续,请将此JS jQuery代码段粘贴到您的页面中(可能不是很完美,因为我在运行时编码,无法在您的页面上对其进行测试)

$(function() {
    $('.nav').on('mouseover', '.dropdown', function() {

        // Get width of .navbar-inner
        var w = $('.navbar-inner').width();

        // Add 20px width due to padding gon .navbar-inner
        w += 20;

        $('.nav .dropdown-menu').each(function() {
            // Get relative offset of parent
            var o = $(this).parents('.dropdown').position().left;

            // Add relative offset of .nav due to 20px padding on .navbar-inner +1px for border
            o += 21;

            // Set styles for .dropdown-menu
            $(this).css({
                width: w,
                left: -o // shift dropdown menu left (negative-sign)
            });
        });
    });
});

要仅将其应用于某个子菜单,请在第2行添加自定义类选择器(例如:full-width):

    $('.nav').on('mouseover', '.dropdown.full-width', function() {

将第7行更改为:

        $('.full-width .dropdown-menu').each(function() {

将自定义类应用于菜单项:

<li class="dropdown full-width">
    <a href="#" class="dropdown-toggle" data-toggle="dropdown"><i class="icon-th-large"></i>