From 9d9f18af252b1c286f97512a004a689165c86510 Mon Sep 17 00:00:00 2001 From: Yanko1013 Date: Sat, 26 Oct 2024 11:10:47 +0800 Subject: [PATCH] [zh-cn]: fix sidebar missing for Web/Performance/* (#24224) --- files/zh-cn/web/performance/critical_rendering_path/index.md | 2 +- .../performance/css_javascript_animation_performance/index.md | 2 +- files/zh-cn/web/performance/dns-prefetch/index.md | 2 +- files/zh-cn/web/performance/how_browsers_work/index.md | 2 +- files/zh-cn/web/performance/lazy_loading/index.md | 2 +- .../web/performance/optimizing_startup_performance/index.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/files/zh-cn/web/performance/critical_rendering_path/index.md b/files/zh-cn/web/performance/critical_rendering_path/index.md index 57171ff86f4f2f..e60e83ff9b021e 100644 --- a/files/zh-cn/web/performance/critical_rendering_path/index.md +++ b/files/zh-cn/web/performance/critical_rendering_path/index.md @@ -5,7 +5,7 @@ l10n: sourceCommit: b12b0159b3f27459ed82b9ac8e3711fec4912e19 --- -{{QuickLinksWithSubPages("Web/Performance")}} +{{QuickLinksWithSubPages("/zh-CN/docs/Web/Performance")}} 关键渲染路径是浏览器将 HTML、CSS 和 JavaScript 转换为屏幕上的像素所经历的步骤序列。优化关键渲染路径可提高渲染性能。关键渲染路径包含了[文档对象模型](/zh-CN/docs/Web/API/Document_Object_Model)(DOM)、[CSS 对象模型](/zh-CN/docs/Web/API/CSS_Object_Model)(CSSOM)、渲染树和布局。 diff --git a/files/zh-cn/web/performance/css_javascript_animation_performance/index.md b/files/zh-cn/web/performance/css_javascript_animation_performance/index.md index 8092a70757f44a..458f4065a5f673 100644 --- a/files/zh-cn/web/performance/css_javascript_animation_performance/index.md +++ b/files/zh-cn/web/performance/css_javascript_animation_performance/index.md @@ -3,7 +3,7 @@ title: CSS 动画与 JavaScript 动画的性能 slug: Web/Performance/CSS_JavaScript_animation_performance --- -{{QuickLinksWithSubPages("Web/Performance")}} +{{QuickLinksWithSubPages("/zh-CN/docs/Web/Performance")}} 对众多应用程序而言,动画对提供友好的用户体验有着关键的作用。我们有很多方式生成 web 动画,比如 CSS {{cssxref("transition")}} 和 {{cssxref("animation")}} 或者基于 JavaScript 的动画(使用 {{domxref("Window.requestAnimationFrame","requestAnimationFrame()")}})。在这篇文章中,我们分析 CSS 动画和 JavaScript 动画的性能差异。 diff --git a/files/zh-cn/web/performance/dns-prefetch/index.md b/files/zh-cn/web/performance/dns-prefetch/index.md index a484e3e056a5c5..4302b0c4da7a30 100644 --- a/files/zh-cn/web/performance/dns-prefetch/index.md +++ b/files/zh-cn/web/performance/dns-prefetch/index.md @@ -3,7 +3,7 @@ title: 使用 dns-prefetch slug: Web/Performance/dns-prefetch --- -{{QuickLinksWithSubPages("Web/Performance")}} +{{QuickLinksWithSubPages("/zh-CN/docs/Web/Performance")}} **`DNS-prefetch`** 尝试在请求资源之前解析域名。这可能是后面要加载的文件,也可能是用户尝试打开的链接目标。 diff --git a/files/zh-cn/web/performance/how_browsers_work/index.md b/files/zh-cn/web/performance/how_browsers_work/index.md index 71d59ef5594c51..72e72793070c0f 100644 --- a/files/zh-cn/web/performance/how_browsers_work/index.md +++ b/files/zh-cn/web/performance/how_browsers_work/index.md @@ -5,7 +5,7 @@ l10n: sourceCommit: f32c38c1245815c7f520730f0cdef54960e5cee1 --- -{{QuickLinksWithSubPages("Web/Performance")}} +{{QuickLinksWithSubPages("/zh-CN/docs/Web/Performance")}} 在浏览网页时用户希望页面的内容能够快速加载且流畅交互。因此,开发者应力争实现这两个目标。 diff --git a/files/zh-cn/web/performance/lazy_loading/index.md b/files/zh-cn/web/performance/lazy_loading/index.md index 53e6c59b6b1846..09a9ec5ee79d7b 100644 --- a/files/zh-cn/web/performance/lazy_loading/index.md +++ b/files/zh-cn/web/performance/lazy_loading/index.md @@ -3,7 +3,7 @@ title: 懒加载 slug: Web/Performance/Lazy_loading --- -{{QuickLinksWithSubPages("Web/Performance")}} +{{QuickLinksWithSubPages("/zh-CN/docs/Web/Performance")}} **延迟加载**(懒加载)是一种将资源标识为非阻塞(非关键)资源并仅在需要时加载它们的策略。这是一种缩短[关键渲染路径](/zh-CN/docs/Web/Performance/Critical_rendering_path)长度的方法,可以缩短页面加载时间。 diff --git a/files/zh-cn/web/performance/optimizing_startup_performance/index.md b/files/zh-cn/web/performance/optimizing_startup_performance/index.md index 3df2c42cb956ea..8d5ec0186c22ca 100644 --- a/files/zh-cn/web/performance/optimizing_startup_performance/index.md +++ b/files/zh-cn/web/performance/optimizing_startup_performance/index.md @@ -3,7 +3,7 @@ title: 优化启动性能 slug: Web/Performance/Optimizing_startup_performance --- -{{QuickLinksWithSubPages("Web/Performance")}} +{{QuickLinksWithSubPages("/zh-CN/docs/Web/Performance")}} 一个在软件应用开发中经常被忽视的方面—即便在那些专注于性能优化的软件中—就是启动时的表现。你的应用需要花费多长时间启动?当应用加载时是否会卡住用户的设备或浏览器?这会让用户担心你的应用崩溃了,或者哪儿出错了。花时间确保你的应用能够更好地启动总是一个好主意。这篇文章提供了一些技巧和建议来帮助你达成这个目标,不管是在写一个新的应用还是从其他平台向 Web 移植一个应用。