17

有带有列表项目的简单菜单。UL LI。LI 的宽度和数量是动态的。悬停/单击时会出现“更多”下拉菜单,它将显示剩余的 LI ,这不适合可用空间。

我尝试在用户从右到左调整窗口大小时使用 jquery,它会隐藏最后一个可见的菜单项。执行此操作的可能方法是什么,并在“更多”链接中添加 LI。

尝试了一些选项,因为当我们调整大小时宽度较小,然后列表项移动到下方并增加 UL 的高度,所以使用这种方法我可以隐藏最后一个可见的。代码

http://jsbin.com/flexmenu/2/edit

步骤1

调整窗口大小

第2步在此处输入图像描述

第 3 步在此处输入图像描述

当用户重新调整大小(增加宽度)时,这些步骤将相反

标记

<div class="twelve columns filter-wrapper">
    <ul class="nav-bar-filter" id="nav-bar-filter">
        <li><a href="#">All</a></li>
        <li><a href="#">Small</a></li>
        <li><a href="#">Medium</a></li>
        <li><a href="#">Extra large</a></li>
        <li><a href="#">Text</a></li>
        <li><a href="#">Small-1</a></li>
        <li><a href="#">Medium-1</a></li>
        <li><a href="#">Extra large text</a></li>
        <li><a href="#">Large text</a></li>
        <li><a href="#">Text</a></li>
    </ul>
<ul id="more-nav">
  <li><a href="#">More > </a>
    <ul class="subfilter"><li><a href="#">Text</a></li></ul>
  </li>    
</ul>
</div>

基本上这个菜单将用于响应式布局菜单。这方面的任何帮助都会有所帮助。编辑 1:添加标记

4

4 回答 4

14

好吧,我已经尝试构建一些脚本来执行此操作,这就是我所拥有的:

$().ready(function () { 

    //we reconstruct menu on window.resize
    $(window).on("resize", function (e) {                                                   
        var parentWidth = $("#nav-bar-filter").parent().width() - 40;
        var ulWidth = $("#more-nav").outerWidth();                  
        var menuLi = $("#nav-bar-filter > li");                 
        var liForMoving = new Array();      
        //take all elements that can't fit parent width to array
        menuLi.each(function () {                       
            ulWidth += $(this).outerWidth(); 
            if (ulWidth > parentWidth) {
                console.log(ulWidth);
                liForMoving.push($(this));
            }
        });                         
        if (liForMoving.length > 0) {   //if have any in array -> move them to "more" ul
            e.preventDefault();                     
            liForMoving.forEach(function (item) {
                item.clone().appendTo(".subfilter");
                item.remove();
            });                         
        }
        else if (ulWidth < parentWidth) { //check if we can put some 'li' back to menu
            liForMoving = new Array();
            var moved = $(".subfilter > li");
            for (var i = moved.length - 1; i >= 0; i--) { //reverse order
                var tmpLi = $(moved[i]).clone();
                tmpLi.appendTo($("#nav-bar-filter"));
                ulWidth += $(moved[i]).outerWidth();
                if (ulWidth < parentWidth) {                                
                    $(moved[i]).remove();
                }
                else {
                    ulWidth -= $(moved[i]).outerWidth();
                    tmpLi.remove();
                }                           
            }                       
        }                       
        if ($(".subfilter > li").length > 0) { //if we have elements in extended menu - show it
            $("#more-nav").show();
        }
        else {
            $("#more-nav").hide();
        }
    });

    $(window).trigger("resize"); //call resize handler to build menu right
});

JSFiddle 示例

必须更改您的 css 样式以使其正常工作。我们所做的是:

  1. 获取父容器的宽度,width主菜单的初始值为零,但我们可能必须显示附加菜单,所以我们也得到它的大小。
  2. window.resize我们循环遍历主菜单(水平)中的所有元素,在变量中累积每个元素的宽度ulWidth
  3. 一旦width主菜单超过width父容器 -> 我们需要将其余菜单项移动到子菜单(垂直) - 所以我们将这些元素推送到数组liForMoving
  4. 如果数组liForMoving 不为空 - 我们克隆它的元素,将它们附加到子菜单并从主菜单中删除它们。
  5. 如果width所有元素中的所有元素mainMenu都小于其容器的宽度,我们需要检查是否可以将某些元素从子菜单移动到主菜单
  6. 我们遍历子菜单元素,抓取每个项目,附加到主菜单(如果菜单中有不同的字体和填充 - 元素的最终大小会有所不同),检查它的大小是否适合父容器。如果- 我们从子菜单 ( $(moved[i]).remove()) 中删除元素,如果不是- 我们删除附加元素 ( tmpLi.remove())
  7. 最后我们检查子菜单是否有任何项目,并显示/隐藏它。
于 2013-03-19T12:49:06.453 回答
11
$(document).ready(function () {
    var menu = $("#nav-bar-filter"),
        subMenu = $(".subfilter"),
        more = $("#more-nav"),
        parent = $(".filter-wrapper"),
        ww = $(window).width(),
        smw = more.outerWidth();

    menu.children("li").each(function () {
        var w = $(this).outerWidth();
        if (w > smw) smw = w + 20;
        return smw
    });
    more.css('width', smw);

    function contract() {
        var w = 0,
            outerWidth = parent.width() - smw - 50;
        for (i = 0; i < menu.children("li").size(); i++) {
            w += menu.children("li").eq(i).outerWidth();
            if (w > outerWidth) {
                menu.children("li").eq(i - 1).nextAll()
                    .detach()
                    .css('opacity', 0)
                    .prependTo(".subfilter")
                    .stop().animate({
                    'opacity': 1
                }, 300);
                break;
            }
        }
    }

    function expand() {
        var w = 0,
            outerWidth = parent.width() - smw - 20;
        menu.children("li").each(function () {
            w += $(this).outerWidth();
            return w;
        });
        for (i = 0; i < subMenu.children("li").size(); i++) {
            w += subMenu.children("li").eq(i).outerWidth();
            if (w > outerWidth) {
                var a = 0;
                while (a < i) {
                    subMenu.children("li").eq(a)
                        .css('opacity', 0)
                        .detach()
                        .appendTo("#nav-bar-filter")
                        .stop().animate({
                        'opacity': 1
                    }, 300);
                    a++;
                }
                break;
            }
        }
    }
    contract();

    $(window).on("resize", function (e) {
        ($(window).width() > ww) ? expand() : contract();
        ww = $(window).width();
    });

});

演示

必须修改 CSS 才能使其工作。我没有为任何元素提供静态尺寸,以便菜单无论其内容如何都能做出响应。

它是如何工作的:只有两个函数contract()expand()当页面加载contract()将被调用以将额外的项目移动到子菜单时,当窗口被调整大小时,如果它正在扩展expand()将被调用,如果它正在收缩contract()将被调用。

更新:在右侧添加了动画和固定子菜单位置,请参阅演示。

于 2013-03-23T21:35:52.080 回答
1

试试这个:让你的 jQuery 检测栏中有多少项nav必须被截断。然后,使用JavaScript 方法根据截断的术语数li向 中添加元素。例如,如果您的 jQuery 检测到 5 个术语已被截断,则使用以下代码:uldocument.createElement()

var truncated_elements = 5;
for (i=1; i<truncated_elements; i++){
    var new_li = document.createElement('li');
    new_li.innerHTML = "truncated_term";
    document.getElementsByTagName('ul')[0].appendChild(new_li);
}

在上面的代码中,jQuery 会计算出需要截断 5 个元素,并运行一个for循环,在循环中它会li为每个截断的元素创建 s。的innerHTMLnew_li设置为被截断元素的内容(可能使用数组),然后new_li将附加到ul“更多”子菜单中的 。

如有必要,我可以提供 JSFiddle/JSBin。

于 2013-03-14T21:25:17.577 回答
1

我认为下拉菜单应该颠倒,以使选项卡序列以相同的顺序保持在可聚焦项目中。

对于可访问性,您还可以设置集合大小和集合中的位置。出于可访问性的原因,当移动的元素具有焦点并添加 setWaiAria 以设置 setsize 和设置位置时,我将焦点重置为克隆项目。当更多链接具有焦点并消失时,将焦点设置到最后一项。见小提琴

$().ready(function () { 

  var setWaiAria = function(menuLi){
    menuLi.each(function (i,el) {
      var $el = $(el);
      $el.attr('aria-setsize',menuLi.length);
      $el.attr('aria-posinset',i+1);
    });
  }

  // set wai aria aria-setsize and aria-posinset before cloning elements in other list
  setWaiAria($("#nav-bar-filter > li"));

  //we reconstruct menu on window.resize
  $(window).on("resize", function (e) {                         
    var parentWidth = $("#nav-bar-filter").parent().width() - 40;
    var ulWidth = $("#more-nav").outerWidth();          
    var menuLi = $("#nav-bar-filter > li");         
    var liForMoving = new Array();
    var activeElement = $(document.activeElement)[0];

    // before remove item check if you have to reset the focus
    var removeOriginal = function(item,clone){
      // check focused element
      if(item.find('a')[0] === activeElement){
        activeElement = clone.find('a')[0];
      }

      item.remove();
    }

    //take all elements that can't fit parent width to array
    menuLi.each(function () {
      var $el = $(this);            
      ulWidth += $el.outerWidth(); 
      if (ulWidth > parentWidth) {
        liForMoving.unshift($el);
      }
    }); 

    if (liForMoving.length > 0) { //if have any in array -> move em to "more" ul
      e.preventDefault(); 

      liForMoving.forEach(function (item) {
        var clone = item.clone();
        clone.prependTo(".subfilter");

        removeOriginal(item, clone);
      });

    }
    else if (ulWidth < parentWidth) { //check if we can put some 'li' back to menu
      liForMoving = new Array();

      var moved = $(".subfilter > li");
      for (var i=0, j = moved.length ; i < j; i++) { 
        var movedItem = $(moved[i]);

        var tmpLi = movedItem.clone();
        tmpLi.appendTo($("#nav-bar-filter"));


        ulWidth += movedItem.outerWidth();
        if (ulWidth < parentWidth) {
          removeOriginal(movedItem, tmpLi);
        }
        else {
          // dont move back
          ulWidth -= movedItem.outerWidth();
          tmpLi.remove();
        }

      }
    }           
    if ($(".subfilter > li").length > 0) { //if we have elements in extended menu - show it
      $("#more-nav").show();
    }
    else {
      // check if 'more' link has focus then set focus to last item in list
      if($('#more-nav').find('a')[0] === $(document.activeElement)[0]){
        activeElement = $("#nav-bar-filter > li:last-child a")[0];
      }

      $("#more-nav").hide();
    }

    // reset focus
    activeElement.focus();
  });

  $(window).trigger("resize"); //call resize handler to build menu right
});
于 2015-04-06T12:17:43.013 回答