2

调整浏览器大小时,我对固定菜单有一个大问题,因为 li 重叠并省略了定义它们的部分:(。所以我在考虑可以使用的两个选项:1:整个菜单有一个固定的宽度以像素为单位,而不是以 % 为单位,并且当调整浏览器大小以在左右滚动菜单时。2:li 重新排列在用边框定义的同一部分中。

直到现在我什么也做不了,因为如果我在调整浏览器大小时使用溢出来左右滚动我的菜单是行不通的。如果有人能给我这个闷热问题的解决方案,我将不胜感激:)

这是一个页面测试: http: //mainpage.ueuo.com/Pagina%20start.htm

谢谢你。

4

4 回答 4

2

或者您可以使用脚本来重写您的填充和字体大小属性:

function renderMenuCorection(){
                if ($('#containerHeader').exists()) {
                    var resizeObject = {

                        '0-640': '9px,2px,-3px',
                        '640-800': '10px,2px,-5px',
                        '800-1024': '10px,8px,-13px',
                        '1024-1300': '12px,12px,-13px',
                        '1300-2000': '14px,20px,-21px'
                    }

                    var win = $(window);
                    var win_width = win.width();

                    if (win_width > 0 && win_width <= 640) {
                        var value = getValueByKey(resizeObject, '0-640')
                        modifayMenu(value);
                        console.log(win_width + ' : ' + value);
                    }
                    else 
                        if (win_width > 640 && win_width <= 800) {
                            var value = getValueByKey(resizeObject, '640-800')
                            modifayMenu(value);
                            console.log(win_width + ' : ' + value);
                        }
                        else 
                            if (win_width > 800 && win_width <= 1024) {
                                var value = getValueByKey(resizeObject, '800-1024')
                                modifayMenu(value);
                                console.log(win_width + ' : ' + value);
                            }
                            else 
                                if (win_width > 1024 && win_width <= 1300) {
                                    var value = getValueByKey(resizeObject, '1024-1300')
                                    modifayMenu(value);
                                    console.log(win_width + ' : ' + value);
                                }

                                else 
                                    if (win_width > 1300 ) {
                                        var value = getValueByKey(resizeObject, '1300-2000')
                                        modifayMenu(value);
                                        console.log(win_width + ' : ' + value);
                                    }
                }
            }
          function modifayMenu(value){
            var vals = value.split(',')
                $('#containerHeader').find('.roundMenuLi').each(function(index, item){
                    $(item).find('a').css('font-size', vals[0]);
                    $(item).css('padding-right', vals[1]);
                    $(item).css('padding-left', vals[1]);
                    $(item).find('ul').css('margin-left', vals[2]);
              });

            }
          function getValueByKey(obj, myKey){

                $.each(obj, function(key, value){

                    if (key == myKey) {
                        returnValue = value;
                    }
                });
                return returnValue;
            }

-首先声明您的分辨率 0-600 ... 1300-2000 并在 modifayMenu 函数中设置您的 css 属性:0position-font,1position-padding left&right,2position margin left for secon ul level。

调用脚本:

<body onresize="renderMenuCorection();" onload="renderMenuCorection();">
于 2013-01-25T08:40:42.473 回答
2

添加min-width: 1000px(或更多......你的菜单真的太长了恕我直言)

到你的固定#headerbody元素。

这将overflow-x起作用(无需指定)。

于 2013-01-24T09:29:58.360 回答
1
#firstUl > li {
    display:inline-block; 
    vertical-align:top; 
    display:inline; /* display:inline & zoom:1 for ie7 */ 
    zoom:1;
}

从 ul 和 ul 容器中删除高度,从 containerHeader 中删除高度使用填充顶部和底部来保持菜单和容器之间的间隙

于 2013-01-24T09:04:10.970 回答
0

overflow:hidden;

在 dividio 的内联样式中

于 2013-03-09T14:51:13.847 回答