文件名称:模态路由
文件大小:6KB
文件格式:ZIP
更新时间:2024-03-20 01:26:08
JavaScript
模态路由 在许多流行的社交媒体上,打开帖子会更新URL,但不会触发导航,而是将内容显示在模式中。 此行为可确保用户不会丢失当前的UI上下文(滚动位置)。 该URL仍反映该帖子的实际页面位置,并且任何刷新都会将用户带到那里。 此行为可确保出色的UX,而不会忽略SEO。 本示例说明如何基于路线有条件地显示模态。 自己部署 使用部署示例: 如何使用 使用或执行以引导示例: npx create-next-app --example with-route-as-modal with-route-as-modal-app # or yarn create next-app --example with-route-as-modal with-route-as-modal-app 使用将其部署到云()。
【文件预览】:
with-route-as-modal-master
----.gitignore(386B)
----components()
--------Article.js(218B)
--------styles.module.css(540B)
--------Post.js(215B)
--------Grid.js(881B)
----package.json(297B)
----app-styles.module.css(80B)
----README.md(1KB)
----pages()
--------article()
--------index.js(528B)
--------post()
--------_app.js(212B)