按钮
Send flight button
Send flight button:浅色拉丝按钮播放简短发送流程:纸张图标飞出,发送中文字的圆点递增,随后勾号落入。
使用 Send flight button
Send flight button 的预览采用「行内」布局,主题设置为「浅色」。
自定义预览
这些控件会传给演示组件。默认值和限制描述的是预览;完整的属性接口请查看实现代码。
| 控件 | 类型 | 默认值 | 预览限制 |
|---|---|---|---|
label | text | Send message | 最多 20 个字符 |
sentLabel | text | Sent | 最多 16 个字符 |
accent | color | #38BDF8 | 元数据未列出其他限制。 |
sequenceMs | number | 4500 | 范围 1500 至 8000;步长 250 |
autoReplay | boolean | true | 元数据未列出其他限制。 |
Send flight button 提供哪些框架版本?
Send flight button 提供 React、Vue、Svelte、Astro、HTML 版本。实时预览使用 React;以下代码观察仅针对 index.tsx。使用其他版本前,请确认其交互行为。
Send flight button 有哪些依赖?
React 元数据列出的额外 npm 依赖为:motion、clsx。
Send flight button 的代码中有哪些无障碍细节?
Send flight button 的 React 代码包含:属性与事件处理器(aria-busy、aria-hidden、aria-label);显式角色(status)。这些信息来自代码观察。请在组合后的页面中验证无障碍名称、焦点顺序和键盘行为。
Send flight button 如何处理减少动态效果的偏好?
Send flight button 的 React 代码通过 useReducedMotion() 读取动态效果偏好。index.tsx 中随偏好变化的表达式:bobAnimate: !idle || reduced ? { x: 0, y: 0 } : pressed ? { x: -2, y: 2 } : hovered ? { y: [0, -3, 0] } : { x: 0, y: 0 };bobTransition: idle && hovered && !pressed && !reduced ? { duration: 0.8, repeat: Infinity, ease: "easeInOut" as const } : { duration: 0.18 };reduced ? { opacity: 0 } : { opacity: 0, y: -14 }。请启用减少动态效果,检查完整实现、共享样式和所选框架版本;这些观察不能证明所有动画都会停止。