Translate FAQ > Passing Functions to Components#105
Conversation
|
Deploy preview for ko-reactjs-org ready! Built with commit 95f041a |
Member
|
c870331 커밋에 의해 발생한 충돌을 직접 해결했습니다. |
taehwanno
reviewed
Jun 24, 2019
content/docs/faq-functions.md
Outdated
| [`requestAnimationFrame`](https://developer.mozilla.org/ko/docs/Web/API/window/requestAnimationFrame)은 렌더링 성능을 위해 브라우저에서 최적화된 시간에 함수가 실행되도록 함수를 큐잉하는 방법입니다. `requestAnimationFrame`의 큐로 들어간 함수는 다음 프레임에서 실행됩니다. 브라우저는 1초당 60프레임(60 fpt)을 보장하기 위해 열심히 일합니다. 하지만 만약에 브라우저가 이를 하지 못할때 저절로 프레임을 *제한*합니다. 예를 들면 한 기기가 30fps만 처리할 수 있다면 1초 동안 30프레임만 얻을 수 있습니다. 스로틀링을 위해 `requestAnimationFrame`을 사용하면 1초에 60번 이상 업데이트하는 것을 막을 수 있습니다. 1초당 100번 업데이트하도록 브라우저에 일을 만들어 주어도, 유저는 이를 확인할 수 없습니다. | ||
|
|
||
| >**Note:** | ||
| >**주의:** |
ghost
commented
Jul 19, 2019
* 'master' of https://github.com/sdu6342/ko.reactjs.org: (122 commits) Resolve merge conflict Revert "Added option for more cdns. (#2144)" (#2146) Update docs about an existence of .elementType (#2145) Added option for more cdns. (#2144) Merge conflict Reduce confusion about adding additional fields to .this (#2142) Resolve merge conflict Fix typo and naturally in context. (#153) Add Kiel to the list of React Meetups (#2136) React Native added support for hooks in 0.59 (#2121) [Documentation] Fix: Update link to Chrome Accessibility Inspec… (#2134) Add DevExtreme Reactive to the Components list (#2127) Revert "fix(Blog): Post title updated to correct word for yes word in spanish (#2122)" (#2130) fix(Blog): Post title updated to correct word for yes word in spanish (#2122) Resolve merge conflict move past conferences to the bottom of the list (#2118) Translate components/LayoutFooter (#122) Resolve merge conflict Update tutorial.md (#2115) Update hooks-faq.md (#2113) ...
Author
|
꼼꼼하게 리뷰해주셔서 감사합니다. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
faq-functions, "Passing Functions to Components" 번역초안입니다.
Progress