aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web
diff options
context:
space:
mode:
authorTim Zhao <30540533+ZhaoTim@users.noreply.github.com>2021-10-05 19:28:43 +0800
committerGitHub <noreply@github.com>2021-10-05 19:28:43 +0800
commit863015b8f9da281f105df1ccecf9bf3997d55cd9 (patch)
tree855bc39b748129ea28f410f6ed5ce4d3ae5a1858 /files/zh-cn/web
parentb2e6b73a79803d48e0b0cfc784577ae165c7031b (diff)
downloadtranslated-content-863015b8f9da281f105df1ccecf9bf3997d55cd9.tar.gz
translated-content-863015b8f9da281f105df1ccecf9bf3997d55cd9.tar.bz2
translated-content-863015b8f9da281f105df1ccecf9bf3997d55cd9.zip
Improve Web/API/Window/requestIdleCallback, zh-CN (#2634)
第一句话翻译的不通顺。
Diffstat (limited to 'files/zh-cn/web')
-rw-r--r--files/zh-cn/web/api/window/requestidlecallback/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/api/window/requestidlecallback/index.html b/files/zh-cn/web/api/window/requestidlecallback/index.html
index 667133cf18..1be3f77a71 100644
--- a/files/zh-cn/web/api/window/requestidlecallback/index.html
+++ b/files/zh-cn/web/api/window/requestidlecallback/index.html
@@ -11,7 +11,7 @@ translation_of: Web/API/Window/requestIdleCallback
---
<p>{{APIRef("HTML DOM")}}{{SeeCompatTable}}</p>
-<p><strong><code>window.requestIdleCallback()</code></strong>方法将在浏览器的空闲时段内调用的函数排队。这使开发者能够在主事件循环上执行后台和低优先级工作,而不会影响延迟关键事件,如动画和输入响应。函数一般会按先进先调用的顺序执行,然而,如果回调函数指定了执行超时时间<code>timeout</code>,则有可能为了在超时前执行函数而打乱执行顺序。</p>
+<p><strong><code>window.requestIdleCallback()</code></strong>方法插入一个函数,这个函数将在浏览器空闲时期被调用。这使开发者能够在主事件循环上执行后台和低优先级工作,而不会影响延迟关键事件,如动画和输入响应。函数一般会按先进先调用的顺序执行,然而,如果回调函数指定了执行超时时间<code>timeout</code>,则有可能为了在超时前执行函数而打乱执行顺序。</p>
<p>你可以在<span title="idle">空闲</span>回调函数中调用<code><strong>requestIdleCallback()</strong></code>,以便在下一次通过事件循环之前调度另一个回调。</p>