Actions Menu Button Example Using element.focus()
This example demonstrates how the
menu button 설계 패턴
can be used to create a button that opens an actions menu.
In this example, choosing an action from the menu will cause the chosen action to be displayed in the Last Action
edit box.
In this implementation, each item in the menu is made focusable by setting tabindex="-1"
so the JavaScript can use element.focus()
to set focus in response to events that trigger focus movement inside the menu.
An alternative technique for managing focus movement among menu items is demonstrated in
the action menu button example that uses aria-activedescendant.
유사한 예는 다음과 같습니다:
- Action Menu Button Example Using aria-activedescendant: A button that opens a menu of actions or commands where focus in the menu is managed using aria-activedescendant.
- Navigation Menu Button: A button that opens a menu of items that behave as links.
Example
접근성 특성
- A down arrow icon is included to help users understand that the button opens a menu.
- To support operating system high contrast settings:
- Because transparent borders are visible on some systems with operating system high contrast settings enabled, transparency cannot be used to create a visual difference between the element that is focused an other elements. Instead of using transparency, the focused element has a thicker border and less padding. When an element receives focus, its border changes from 1 to 3 pixels and padding is reduced by 2 pixels. When an element loses focus, its border changes from 3 pixels to 1 and padding is increased by 2 pixels.
- Because background color and text color styles can be overridden by operating system high contrast settings, a border is used to ensure the button has a visible boundary when high contrast mode is enabled.
-
To ensure the arrow icons used to indicate the expanded or collapsed state have sufficient contrast with the background when high contrast settings invert colors, the CSS
currentcolor
value for thefill
andstroke
properties of the SVGpolygon
element is used to synchronize the color with text content. If specific colors are used to specify thefill
andstroke
properties, these colors will remain the same in high contrast mode, which could lead to insufficient contrast between the icon and the background or even make the icon invisible if its color matches the high contrast mode background.
키보드 지원
Menu Button
키 | 기능 |
---|---|
Down Arrow Space Enter |
Opens menu and moves focus to first menuitem |
Up Arrow | Opens menu and moves focus to last menuitem |
Menu
Key | 기능 |
---|---|
Enter |
|
Escape |
|
Up Arrow |
|
Down Arrow |
|
Home | Moves focus to the first menu item. |
End | Moves focus to the last menu item. |
A-Z a-z |
|
Role, Property, State, Tabindex 어트리뷰트
Menu Button
역할(role) | 어트리뷰트 | 엘리먼트 | 사용법 |
---|---|---|---|
aria-haspopup="true" |
button
|
|
|
aria-controls="IDREF" |
button
|
|
|
aria-expanded="true" |
button |
|
Menu
역할(role) | 어트리뷰트 | 엘리먼트 | 사용법 |
---|---|---|---|
menu
|
ul
|
Identifies the ul element as a menu . |
|
|
aria-labelledby="IDREF" |
ul
|
|
menuitem
|
li
|
|
|
tabindex="-1" |
li
|
|
Javascript와 CSS 소스 코드
- CSS: menu-button-actions.css
- Javascript: menu-button-actions.js
HTML Source Code