有关如何构建无障碍拆分按钮组件的基本概览。
在这篇博文中,我想分享一下如何构建拆分按钮。 试用演示版。
<ph type="x-smartling-placeholder">如果你更喜欢视频,可以参阅此博文的 YouTube 版本:
概览
拆分按钮是一种按钮 用于隐藏主按钮和一系列其他按钮的功能实用 用于在嵌套次要操作(不太常用)时公开常用操作 操作。拆分按钮对于繁忙的设计至关重要 感觉极简高级拆分按钮甚至能记住用户上一次操作 并将其提升到主要位置。
您可以在电子邮件应用中找到常用的分屏按钮。主要操作 已发送,但您可以稍后发送或改为保存草稿:
共享操作区域很实用,因为用户无需四处查看。他们 请注意拆分按钮中包含基本的电子邮件操作。
零部件
我们先来详细介绍拆分按钮的基本组成部分,然后再讨论 整体编排和最终用户体验。 VisBug 的无障碍功能 用于帮助显示组件的宏视图 HTML 的各个方面、样式和无障碍功能。
顶级拆分按钮容器
最高级别的组件是内联 Flexbox,其类
gui-split-button
,包含主要操作
和 .gui-popup-button
。
主要操作按钮
最初可见且可聚焦的 <button>
适合放在具有
两个匹配的边角形状
focus、
悬停和
活跃互动
包含在 .gui-split-button
中。
弹出式切换按钮
“弹出式按钮”支持元素用于启用和暗指
辅助按钮。请注意,它不是 <button>
,并且无法聚焦。不过,
它是用于 .gui-popup
的定位锚点和用于 :focus-within
的主机
来呈现弹出式窗口
弹出式卡片
这是其锚定广告的浮动卡片子元素
.gui-popup-button
、绝对定位和
从语义上封装按钮列表。
次要操作
一个可聚焦 <button>
,字号略小于主字体
操作按钮带有一个图标和一个免费的
样式。
自定义属性
以下变量有助于营造和谐的色彩,并集中呈现 修改整个组件使用的值。
@custom-media --motionOK (prefers-reduced-motion: no-preference);
@custom-media --dark (prefers-color-scheme: dark);
@custom-media --light (prefers-color-scheme: light);
.gui-split-button {
--theme: hsl(220 75% 50%);
--theme-hover: hsl(220 75% 45%);
--theme-active: hsl(220 75% 40%);
--theme-text: hsl(220 75% 25%);
--theme-border: hsl(220 50% 75%);
--ontheme: hsl(220 90% 98%);
--popupbg: hsl(220 0% 100%);
--border: 1px solid var(--theme-border);
--radius: 6px;
--in-speed: 50ms;
--out-speed: 300ms;
@media (--dark) {
--theme: hsl(220 50% 60%);
--theme-hover: hsl(220 50% 65%);
--theme-active: hsl(220 75% 70%);
--theme-text: hsl(220 10% 85%);
--theme-border: hsl(220 20% 70%);
--ontheme: hsl(220 90% 5%);
--popupbg: hsl(220 10% 30%);
}
}
布局和颜色
Markup
该元素以具有自定义类名称的 <div>
开头。
<div class="gui-split-button"></div>
添加主按钮和 .gui-popup-button
元素。
<div class="gui-split-button">
<button>Send</button>
<span class="gui-popup-button" aria-haspopup="true" aria-expanded="false" title="Open for more actions"></span>
</div>
请注意 aria 属性 aria-haspopup
和 aria-expanded
。这些提示是
对于屏幕阅读器来说,了解分屏的功能和状态至关重要
按钮体验title
属性对每个人都有帮助。
添加 <svg>
图标和 .gui-popup
容器元素。
<div class="gui-split-button">
<button>Send</button>
<span class="gui-popup-button" aria-haspopup="true" aria-expanded="false" title="Open for more actions">
<svg aria-hidden="true" viewBox="0 0 20 20">
<path d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" />
</svg>
<ul class="gui-popup"></ul>
</span>
</div>
对于简单的弹出式内容放置,.gui-popup
是按钮的子元素,
将其展开。此策略的唯一优势是.gui-split-button
容器不能使用 overflow: hidden
,因为它会裁剪弹出窗口,
视觉呈现。
填充了 <li><button>
内容的 <ul>
会声明自身为“按钮”
列表”屏幕阅读器,而这正是呈现的界面。
<div class="gui-split-button">
<button>Send</button>
<span class="gui-popup-button" aria-haspopup="true" aria-expanded="false" title="Open for more actions">
<svg aria-hidden="true" viewBox="0 0 20 20">
<path d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" />
</svg>
<ul class="gui-popup">
<li>
<button>Schedule for later</button>
</li>
<li>
<button>Delete</button>
</li>
<li>
<button>Save draft</button>
</li>
</ul>
</span>
</div>
为了既美观又赏心悦目,我在辅助按钮中添加了图标 (网址为 https://heroicons.com)。两者均可使用图标 主要按钮和辅助按钮
<div class="gui-split-button">
<button>Send</button>
<span class="gui-popup-button" aria-haspopup="true" aria-expanded="false" title="Open for more actions">
<svg aria-hidden="true" viewBox="0 0 20 20">
<path d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" />
</svg>
<ul class="gui-popup">
<li><button>
<svg aria-hidden="true" viewBox="0 0 24 24">
<path d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>
Schedule for later
</button></li>
<li><button>
<svg aria-hidden="true" viewBox="0 0 24 24">
<path d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16" />
</svg>
Delete
</button></li>
<li><button>
<svg aria-hidden="true" viewBox="0 0 24 24">
<path d="M5 5a2 2 0 012-2h10a2 2 0 012 2v16l-7-3.5L5 21V5z" />
</svg>
Save draft
</button></li>
</ul>
</span>
</div>
样式
有了 HTML 和内容后,样式就可以提供颜色和布局了。
设置拆分按钮容器的样式
inline-flex
显示类型非常适合此封装组件,因为它
应与其他拆分按钮、操作或元素内嵌在一起。
.gui-split-button {
display: inline-flex;
border-radius: var(--radius);
background: var(--theme);
color: var(--ontheme);
fill: var(--ontheme);
touch-action: manipulation;
user-select: none;
-webkit-tap-highlight-color: transparent;
}
<button>
样式
按钮可以很好地掩盖所需的代码量。您可能需要 可撤消或替换浏览器默认样式 沿用、添加互动状态并适应各种用户偏好和 输入类型。按钮样式可快速累加。
这些按钮与常规按钮不同,因为它们的背景相同 具有父元素。通常,按钮拥有自己的背景和文本颜色。 但它们会共享数据,并且仅在互动时应用各自的背景。
.gui-split-button button {
cursor: pointer;
appearance: none;
background: none;
border: none;
display: inline-flex;
align-items: center;
gap: 1ch;
white-space: nowrap;
font-family: inherit;
font-size: inherit;
font-weight: 500;
padding-block: 1.25ch;
padding-inline: 2.5ch;
color: var(--ontheme);
outline-color: var(--theme);
outline-offset: -5px;
}
添加与一些 CSS 的互动状态 伪类和匹配的使用 状态的自定义属性:
.gui-split-button button {
…
&:is(:hover, :focus-visible) {
background: var(--theme-hover);
color: var(--ontheme);
& > svg {
stroke: currentColor;
fill: none;
}
}
&:active {
background: var(--theme-active);
}
}
主按钮需要一些特殊样式才能实现设计效果:
.gui-split-button > button {
border-end-start-radius: var(--radius);
border-start-start-radius: var(--radius);
& > svg {
fill: none;
stroke: var(--ontheme);
}
}
最后,要特别注意的是,浅色主题按钮和图标 shadow:
.gui-split-button {
@media (--light) {
& > button,
& button:is(:focus-visible, :hover) {
text-shadow: 0 1px 0 var(--theme-active);
}
& > .gui-popup-button > svg,
& button:is(:focus-visible, :hover) > svg {
filter: drop-shadow(0 1px 0 var(--theme-active));
}
}
}
一个优秀的按钮引起了对微互动和微小细节的关注。
关于:focus-visible
的注意事项
请注意按钮样式如何使用 :focus-visible
而不是 :focus
。:focus
对打造无障碍界面至关重要
崩溃:它并不智能地判断用户是否需要看到或
而是适用于任何焦点
下面的视频尝试对此微互动进行分解,以说明
:focus-visible
是一种智能的替代方案。
设置弹出式按钮的样式
4ch
Flexbox,用于居中放置图标并锚定弹出式按钮列表。点赞
则它是透明的,除非悬停鼠标或互动
并拉伸至填满整个帧
.gui-popup-button {
inline-size: 4ch;
cursor: pointer;
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
border-inline-start: var(--border);
border-start-end-radius: var(--radius);
border-end-end-radius: var(--radius);
}
通过 CSS 处于悬停、聚焦和活动状态的图层
经验积累和
:is()
功能选择器:
.gui-popup-button {
…
&:is(:hover,:focus-within) {
background: var(--theme-hover);
}
/* fixes iOS trying to be helpful */
&:focus {
outline: none;
}
&:active {
background: var(--theme-active);
}
}
这些样式是用于显示和隐藏弹出式窗口的主要钩子。当
.gui-popup-button
的任何子元素(集合 opacity
,位置)上都有 focus
和 pointer-events
。
.gui-popup-button {
…
&:focus-within {
& > svg {
transition-duration: var(--in-speed);
transform: rotateZ(.5turn);
}
& > .gui-popup {
transition-duration: var(--in-speed);
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}
}
}
完成内外样式设置后,最后一步是有条件地 转换变形:
.gui-popup-button {
…
@media (--motionOK) {
& > svg {
transition: transform var(--out-speed) ease;
}
& > .gui-popup {
transform: translateY(5px);
transition:
opacity var(--out-speed) ease,
transform var(--out-speed) ease;
}
}
}
仔细观察代码会发现,对于用户而言,透明度仍然处于转换状态。 并且更喜欢减少动作
设置弹出式窗口的样式
.gui-popup
元素是使用自定义属性的悬浮卡片按钮列表
将相对单元缩小到略微小一些,以便与主广告单元交互
按钮的运用以及品牌的色彩。请注意,图标的对比度较低
更薄一些,阴影中还带有一丝品牌蓝色。就像使用按钮时一样
这些小细节层出不穷。
.gui-popup {
--shadow: 220 70% 15%;
--shadow-strength: 1%;
opacity: 0;
pointer-events: none;
position: absolute;
bottom: 80%;
left: -1.5ch;
list-style-type: none;
background: var(--popupbg);
color: var(--theme-text);
padding-inline: 0;
padding-block: .5ch;
border-radius: var(--radius);
overflow: hidden;
display: flex;
flex-direction: column;
font-size: .9em;
transition: opacity var(--out-speed) ease;
box-shadow:
0 -2px 5px 0 hsl(var(--shadow) / calc(var(--shadow-strength) + 5%)),
0 1px 1px -2px hsl(var(--shadow) / calc(var(--shadow-strength) + 10%)),
0 2px 2px -2px hsl(var(--shadow) / calc(var(--shadow-strength) + 12%)),
0 5px 5px -2px hsl(var(--shadow) / calc(var(--shadow-strength) + 13%)),
0 9px 9px -2px hsl(var(--shadow) / calc(var(--shadow-strength) + 14%)),
0 16px 16px -2px hsl(var(--shadow) / calc(var(--shadow-strength) + 20%))
;
}
为图标和按钮赋予品牌颜色,以便在每种深色背景中展现精美的风格 和浅色主题卡片
.gui-popup {
…
& svg {
fill: var(--popupbg);
stroke: var(--theme);
@media (prefers-color-scheme: dark) {
stroke: var(--theme-border);
}
}
& button {
color: var(--theme-text);
width: 100%;
}
}
深色主题弹出式窗口添加了文本和图标阴影, 强烈的方框阴影:
.gui-popup {
…
@media (--dark) {
--shadow-strength: 5%;
--shadow: 220 3% 2%;
& button:not(:focus-visible, :hover) {
text-shadow: 0 1px 0 var(--ontheme);
}
& button:not(:focus-visible, :hover) > svg {
filter: drop-shadow(0 1px 0 var(--ontheme));
}
}
}
通用 <svg>
图标样式
所有图标的尺寸都与按钮 font-size
的尺寸相当
使用 ch
单位作为
inline-size
。每个模板还指定了一些样式,以帮助突出柔和的图标
平滑。
.gui-split-button svg {
inline-size: 2ch;
box-sizing: content-box;
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 2px;
}
从右至左布局
逻辑属性会执行所有复杂的工作。
所用逻辑属性的列表如下:
- display: inline-flex
用于创建内嵌 Flex 元素。
- padding-block
和 padding-inline
成对,而非 padding
因此可以获得填充逻辑边的好处。
- border-end-start-radius
和
朋友将会
根据文档方向对边角进行圆化处理。
- inline-size
(而非 width
)可确保尺寸与实际尺寸无关。
- border-inline-start
用于在起始位置添加边框,其可能位于右侧或左侧,具体取决于脚本方向。
JavaScript
以下几乎所有 JavaScript 都是为了增强无障碍功能。我的两个 帮助程序库使任务变得更轻松。 BlingBlingJS 用于简明扼要 DOM 查询和简单的事件监听器设置 roving-ux 有助于提供 弹出式窗口的键盘和游戏手柄交互。
import $ from 'blingblingjs'
import {rovingIndex} from 'roving-ux'
const splitButtons = $('.gui-split-button')
const popupButtons = $('.gui-popup-button')
导入上述库后,选择元素并保存到 变量,体验升级还差几个功能即可完成。
漫游索引
当键盘或屏幕阅读器聚焦于 .gui-popup-button
时,我们希望:
将焦点前进到第一个(或最近聚焦的)按钮
.gui-popup
。该库可以帮助我们使用 element
和 target
来完成此操作
参数。
popupButtons.forEach(element =>
rovingIndex({
element,
target: 'button',
}))
现在,该元素会将焦点传递给目标 <button>
子元素,并启用
按标准箭头键进行导航,即可浏览选项。
正在切换aria-expanded
虽然用户可以很明显地看到和隐藏弹出式窗口,但屏幕阅读器需要的不仅仅是视觉提示。在这里,JavaScript 通过切换屏幕阅读器的相应属性来完善 CSS 驱动的 :focus-within
互动。
popupButtons.on('focusin', e => {
e.currentTarget.setAttribute('aria-expanded', true)
})
popupButtons.on('focusout', e => {
e.currentTarget.setAttribute('aria-expanded', false)
})
启用 Escape
键
用户的焦点被故意发送到陷阱,这意味着我们需要
提供一种离开的途径最常见的方法是允许使用 Escape
键。
为此,请注意是否有按键操作弹出按钮,因为
子项将以气泡的形式显示到此父项。
popupButtons.on('keyup', e => {
if (e.code === 'Escape')
e.target.blur()
})
如果弹出按钮检测到有任何 Escape
按键被按下,它会将焦点从自身中移除
替换为
blur()
。
拆分按钮点击
最后,如果用户点击、点按这些按钮或者使用键盘与这些按钮互动,
应用需要执行适当的操作。已使用活动消息气泡功能
但这次是在 .gui-split-button
容器中捕获按钮
子弹出式窗口或主要操作点击。
splitButtons.on('click', event => {
if (event.target.nodeName !== 'BUTTON') return
console.info(event.target.innerText)
})
总结
现在您已经知道我是怎么做到的了,您该怎么做 ‽ 🙂?
让我们一起采用多样化的方法,学习所有在 Web 上构建应用的方法。 创建演示,在 Twitter 微博上添加链接,然后我会添加 到下面的社区混剪部分!
社区混剪作品
- 由 Joost van der Schee 开发的 Codepen