我正在尝试开发一个响应式导航菜单,当屏幕尺寸低于一定宽度时,它会动态创建“更多...”菜单项。
到目前为止我的代码:
Html:
<ul id="menuElem" class="clearfix">
<li class="HighLighted"><a href="#">Menu Item 1</a></li>
<li><a href="#">Menu Item 2</a></li>
<li><a href="#">Menu Item 3</a></li>
<li><a href="#">Menu Item 4</a></li>
<li><a href="#">Menu Item 5</a></li>
<li><a href="#">Menu Item 6</a></li>
</ul>
Javascript:
function MoreMenu () {
//Checks if sub-menu exsists
if ($(".sub-menu").length > 0) {
//if it does then prepends second-last menu item to sub menu
$(".sub-menu").prepend($("#menuElem > li:nth-last-child(2)"));
}
else {
//if it doesn't exsist then appends a list item with a menu-item "more" having a sub-menu and then prepends second-last menu item to this sub menu.
$("#menuElem").append("<li class='more'><a href='#'>More...</a><ul class='sub-menu'></ul></li>");
$(".sub-menu").prepend($("#menuElem > li:nth-last-child(2)"));
}
}
function RemoveMoreMenu () {
//checks if sub-menu has something
if ($(".sub-menu li").length > 0) {
//if it does then the first child is taken out from the sub-menu and added back to the main menu.
$(".sub-menu li:first-child").insertBefore($("#menuElem > li:last-child"));
//if sub-menu doesn't have any more children then it removes the "more" menu item.
if ($(".sub-menu li").length === 0) {
$(".more").remove();
}
}
}
function Resize() {
benchmark = 800; //Maximum width required to run the function
$(window).resize((function() {
currentWidth = $(window).width(); //Current browser width
if (benchmark - currentWidth > 0) {
//checks if the browser width is less than maximum width required and if true it trigers the MoreMenu function
MoreMenu ();
console.log("screen size resized down");
}
else {
}
}));
}
问题是当我运行Resize()
函数时,它实际运行MoreMenu()
函数用于每个窗口大小调整活动,该活动低于800px - 这是不理想的。
那么,当屏幕尺寸低于800时,有没有办法只运行一次MoreMenu()
功能?
提前致谢 - 努力让我了解javascript:)
答案 0 :(得分:2)
跟踪resize
事件处理程序之前的宽度,以便在传递宽度限制时仅调用MoreMenu
和RemoveMoreMenu
上升或下降。
var previousWidth = $(window).width();
var benchmark = 800;
$(window).resize(function() {
var newWidth = $(window).width();
if (newWidth < benchmark && previousWidth >= benchmark) {
MoreMenu();
}
else if (newWidth >= benchmark && previousWidth < benchmark) {
RemoveMoreMenu();
}
previousWidth = newWidth;
});
如果MoreMenu
从开始时小于基准,您可能还想最初运行previousWidth
。