Scrolling a CSS-driven dropdown menu and overflow:hidden? The main #menubar > li will scroll and hide when scrolled to the left of #menubar’s border, but the dropdown menus .aMenu remain visible?
First of all you can’t hide the overflow on the scroller or you won’t see the dropdowns. Also you want the dropdown menus to be visible outside the scroller width because a dropdown menu item may need that extra space to show.
Here’s a screenshot from my old demo showing that if the menu did not appear outside the scrollbar width it would be of no use.
That behaviour has to remain in place or the usability of the menu is gone.
Also at the other end of the menu you need the dropdown to be visible as long as you are hovering on an item or even a portion of a menu item like this.
What you don’t want is that once you start scrolling you need the menus to disappear once the mouse pointer is no longer on that menu item. The only way I can see to do this is that in the scroll routine you add a class (.isScrolling) to the parent item and then use that class in css to hide any dropdowns while the scrolling is in effect.
I have added that function to my old demo and I believe gives the best function for that menu.
I added some js here to add a class to the parent and remove it instantly it had scrolled.
function checkScroll() {
scroller.classList.add("isScrolling");
for (let i = 0; i < dropDown.length; i++) {
dropDown[i].style.transform =
"translateX(-" + scroller.scrollLeft + "px)";
}
scroller.classList.remove("isScrolling");
}
Hope you can implement something similar for your demo as I believe it is the only realistic solution.
(As I said in the original thread the scroll event should most likely be debounced (throttled) to avoid it causing any lag on the page (but that would be a question for the js forum).)
I’m thinking that instead of hiding the dropdown .aMenu when it goes beyond the right/left edges of #menubar, force the scrolling #menubar to scroll to the parent #menubar > li.
Come to think of it, I believe that is exactly what I want.
My on('mousedown' … and on('mouseup' ... returns to the <li> that was originally focused. And that works. But, it may be offscreen = way to the left or way to the right. So all I have to do is make the main #menubar > li visible.
I’d hate that if you did it to me while I was trying to hover the menu item and then you moved it? Your mouse would then be in the wrong place to traverse that menu.
That doesn’t sound like a usable UI unless I misunderstood what you meant.
A better choice would be to make the right side drop menus drop down from the right of the menu item and go left. In that way they will stay within the bounds of the menu (assuming you don’t have multiple nested items as in my example). Of course you’d need to script that behaviour if you have many menu items as the side they drop down from will change depending on which way you are scrolling.
You will still need the code I gave you to stop the menu still showing while you scroll the menu bar sideways with the mouse. I’m not sure if we are talking about different issues though as I am sideways scrolling with a mac mouse ?
We are not talking using the mouse to go from menu to menu. That is handled with just the CSS alone.
Moving the mouse won’t scroll anything because you can’t move it to a menu that’s off screen … once you’ve dropped a menu.
You can mouse from one main menu to another as long as no drop menu is showing. And this works just dandy.
Scrolling occurs great.
To go from a menu item in one menu to a menu item in another menu requires TABbing.
I’m talking TABbing:
TABbing from menu item to menu item, which may take us to a different menu, forward or backward. All based on tabindex which has already been added to $(“li”) with start up.
This automatically selects each li in turn.
So we’re TABbing and suddenly we’ve tabbed beyond the right edge of the #menubar because we’ve gone to the next #menubar > li, which was previously off screen. This causes automatic scrolling because we’ve selected a different main menu.
And this works great.
So I am thinking that when we TAB forward e.g. to something off screen, we decide to click on the scroll bar. Unless we click on some other menu, our mouseup Handler will automatically select what our previous selection was before we clicked the scroll bar.
I think that’s the same behaviour you are experiencing when you tab and the tabbed item shows off screen. I believe that will still happen in your version so should be looked at.
I put a blur() in my example top that happening with tab.
It seems to work if you just use the keyboard but if you mix tabbing and mouse actions then it seems to get a bit confused.
I think that you may indeed need to scroll into view a tabbed item using js if that item is not visible. (My demo seems to more or less do this using focus:within unless as I said the mouse is also used.)
Have added this to incorporate pressing the left/right arrow to make up for the fact that when I use the mouse to click on your scrollbar of your scroller, the drop menu that contains the currently selected <li> always scrolls into view via scrollIntoView().
This automatic scrolling into view prohibits clicking on your scrollbar to see other menus etc … so the left/right arrows allow the user to do just that:
else if (code === 39) // right arrow
{
$MBScroller.focus(); // = $("#menubar").focus()
var dx = $MBScroller[0].clientWidth * .10;
// right arrow means we are seeing more of the
// menus on the far-right and seeing less of
// the left => scrollLeft is increasing
$MBScroller[0].scrollLeft += dx;
}
else if (code === 37) // left arrow
{
$MBScroller.focus();
var dx = $MBScroller[0].clientWidth * .10;
// left arrow means we are seeing more of the
// menus on the far-left and seeing less of
// the right => scrollLeft is decreasing
$MBScroller[0].scrollLeft -= dx;
}
Note that whereas I can fast-TAB via continuous pressing of the TAB key to rapidly traverse from one li to another … but I have got to press an arrow key, release it (one at a time), versus pressing and holding an arrow key. I’m guessing it’s because I call $MBScroller[0].scrollLeft +- dx each time.
If someone were to “plop” my code for drop-down menus, my tabbable elements are my li.
What I wish to do is select a non- TAB key to traverse my li, thus keeping the TAB key reserved by HTML
FWIW, I just let my selection of the TAB key ride … eventually it gets to my last li and then tabs to your<a> or <input> html and then proceeds to the Browser’s tabbable stuff and cycles back to the beginning of my li items.