Summary
Skyline 自定义路由与页面转场技能。涵盖自定义路由动画(routeBuilder)、预设路由(7 种 wx:// 类型)、页面返回手势、容器转场动画(open-container)、Router API。适用于实现半屏弹窗、页面缩放、底部弹出、卡片展开等转场效果。触发?
wechat-miniprogram/skyline-skills
Skyline 自定义路由与页面转场技能。涵盖自定义路由动画(routeBuilder)、预设路由(7 种 wx:// 类型)、页面返回手势、容器转场动画(open-container)、Router API。适用于实现半屏弹窗、页面缩放、底部弹出、卡片展开等转场效果。触发?
npx skills add wechat-miniprogram/skyline-skills --skill skyline-route
Skyline 自定义路由与页面转场技能。涵盖自定义路由动画(routeBuilder)、预设路由(7 种 wx:// 类型)、页面返回手势、容器转场动画(open-container)、Router API。适用于实现半屏弹窗、页面缩放、底部弹出、卡片展开等转场效果。触发?
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Guidance for distinctive, intentional visual design when building new UI or reshaping an existi…
866.4K installsBrowser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsDebug Azure production issues on Azure using AppLens, Azure Monitor, resource health, and safe …
568.9K installsOther skills from wechat-miniprogram/skyline-skills.
npx skills add wechat-miniprogram/skyline-skills
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
master
Files included with this skill beyond the listing page.
SKILL.md
6,858 B
SUMMARY.md
5,414 B
| 层级 | 能力 | 适用场景 |
|---|---|---|
| 预设路由 | 一行代码使用 7 种内置效果 | 快速实现常见转场 |
| 自定义路由 | 通过 routeBuilder 完全控制动画 | 高度定制化转场 |
| 容器转场 | <open-container> 元素级过渡 |
卡片展开到详情页 |
| 属性 | 说明 |
|---|---|
| primaryAnimation | 页面进入/退出动画进度(0→1 进入,1→0 退出) |
| secondaryAnimation | 下一页进入时当前页动画进度(与下一页 primaryAnimation 同步) |
| userGestureInProgress | 当前路由进度是否由手势控制 |
| startUserGesture / stopUserGesture | 手势接管/释放路由控制 |
| didPop | 确认返回上一页 |
根据需求快速定位(路径相对于 references/):
| 我想要... | 查阅文档 |
|---|---|
| 了解自定义路由原理和接口 | custom-route/custom-route-guide.md |
| 查看半屏/手势返回代码模式 | custom-route/route-patterns.md |
| 快速使用预设路由 | preset-route/preset-route.md |
| 配置页面返回手势 | pop-gesture/pop-gesture.md |
| 实现卡片展开转场 | open-container/open-container.md |
| 查看 Router API | api/router-api.md |
| 了解 navigateTo 路由参数 | api/navigate-to.md |
| 监听路由事件 | api/route-events.md |
``js // ✅ A 页(Skyline) → B 页(Skyline):自定义路由生效 // ❌ A 页(WebView) → B 页(Skyline):降级为默认路由 ``
``js // ✅ 正确 const handlePrimaryAnimation = () => { 'worklet' return { transform: translateX(${...}px)` } }
// ❌ 错误:缺少 worklet 指令,无法在 UI 线程执行 const handlePrimaryAnimation = () => { return { transform: translateX(${...}px) } } ```
``js // ✅ 正确 handleDragStart() { 'worklet' this.customRouteContext.startUserGesture() } handleDragEnd() { 'worklet' // ... 动画完成回调中: stopUserGesture() } ``
``js // ✅ 正确:动画完成后调用 didPop primaryAnimation.value = timing(0.0, { duration }, () => { 'worklet' didPop() stopUserGesture() }) ``
startUserGesture 就直接修改 primaryAnimation.valueprimaryAnimation.value| routeType | 效果 | 最低基础库 |
|---|---|---|
wx://bottom-sheet |
底部弹出半屏 | 3.1.0 |
wx://upwards |
自底向上全屏 | 3.1.0 |
wx://zoom |
缩放进入 | 3.1.0 |
wx://cupertino-modal |
iOS 风格模态 | 3.1.0 |
wx://cupertino-modal-inside |
iOS 模态内嵌 | 3.1.0 |
wx://modal-navigation |
模态导航 | 3.1.0 |
wx://modal |
模态弹窗 | 3.1.0 |
// 使用预设路由
wx.navigateTo({
url: 'xxx',
routeType: 'wx://bottom-sheet',
routeOptions: { height: 60, round: true }
})
| API | 说明 | 最低基础库 |
|---|---|---|
wx.router.addRouteBuilder(type, builder) |
注册自定义路由 | 2.29.2 |
wx.router.removeRouteBuilder(type) |
移除自定义路由 | 2.29.2 |
wx.router.getRouteContext(this) |
获取路由上下文 | 2.29.2 |
wx.navigateTo({ routeType }) |
指定路由类型跳转 | 2.29.2 |
wx.navigateTo({ routeConfig }) |
覆盖路由配置 | 3.4.0 |
wx.navigateTo({ routeOptions }) |
传入路由参数 | 3.4.0 |
wx.navigateTo({ withOpenContainer }) |
容器转场跳转 | 3.12.2 |
wx.onBeforeAppRoute(fn) |
路由执行前监听 | 3.5.5 |
wx.onAppRoute(fn) |
路由执行后监听 | 3.5.5 |
// 注册:从右滑入
wx.router.addRouteBuilder('slide', ({ primaryAnimation }) => {
const { windowWidth } = wx.getWindowInfo()
const handlePrimaryAnimation = () => {
'worklet'
const transX = windowWidth * (1 - primaryAnimation.value)
return { transform: `translateX(${transX}px)` }
}
return { handlePrimaryAnimation }
})
// 跳转
wx.navigateTo({ url: 'pageB', routeType: 'slide' })
| 场景 | 推荐方案 |
|---|---|
| 底部弹出半屏 | 预设路由 wx://bottom-sheet |
| iOS 风格模态 | 预设路由 wx://cupertino-modal |
| 自定义半屏 + 手势 | 自定义路由 + handlePrimaryAnimation |
| 卡片展开到详情页 | <open-container> 容器转场 |
| 页面渐显效果 | 自定义路由 + opacity 动画 |
| 需要纵向返回手势 | popGestureDirection: 'vertical' |
| 场景 | 推荐技能 | 说明 |
|---|---|---|
| 动画开发 | skyline-worklet |
Worklet 动画系统(timing/spring/Easing) |
| 手势处理 | skyline-components |
gesture-handler 手势组件 |
| 共享元素 | skyline-components |
share-element 页面间动画 |
| 配置详解 | skyline-config |
app.json/page.json 配置 |
| 概览迁移 | skyline-overview |
Skyline 概览与迁移指南 |
references/
├── api/
│ ├── navigate-to.md
│ ├── route-events.md
│ └── router-api.md
├── custom-route/
│ ├── custom-route-guide.md
│ └── route-patterns.md
├── open-container/
│ └── open-container.md
├── pop-gesture/
│ └── pop-gesture.md
└── preset-route/
└── preset-route.md