From e236ea39f3d4f810cf2e9625943b0de4ba07b0e0 Mon Sep 17 00:00:00 2001 From: Dayeon Yoon <88532969+YDayeon@users.noreply.github.com> Date: Sun, 5 Nov 2023 00:41:04 +0900 Subject: [PATCH] Update files/ko/web/api/intersection_observer_api/index.md Co-authored-by: hochan Lee --- files/ko/web/api/intersection_observer_api/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/ko/web/api/intersection_observer_api/index.md b/files/ko/web/api/intersection_observer_api/index.md index 504dc2487c2108..47e2138b5a08a7 100644 --- a/files/ko/web/api/intersection_observer_api/index.md +++ b/files/ko/web/api/intersection_observer_api/index.md @@ -22,7 +22,7 @@ Intersection Observer API는 상위 요소 또는 최상위 문서의 {{Glossary Intersection Observer API는 특정 요소가 다른 요소(또는 {{Glossary("viewport")}})와의 교차점에 들어가거나 나갈 때 또는 두 요소 간의 교차점이 지정된 양만큼 변화될 때 실행되는 콜백 함수를 코드에 등록할 수 있습니다. 이 방법으로, 사이트는 더이상 이러한 종류의 요소 교차를 감시하기 위해 메인 스레드에 아무것도 할 필요가 없고, 브라우저는 적합하다고 판단되는 대로 교차 관리를 자유롭게 최적화할 수 있습니다. -Intersection Observer API가 알려주지 않는 한 가지 : 중첩된 정확한 픽셀 수치나 특수하게 어떤 게 중첩된 것들인지, 그러나 "만약 약 N%만큼 어딘가에서 교차한다면, 어떤 행동을 할 필요가 있다."와 같은 더 많은 흔한 사용 사례를 다루고 있습니다. +Intersection Observer API가 알려주지 않는 한 가지: 겹치는 픽셀의 정확한 수나 구체적으로 어떤 픽셀인지를 알려주지 못합니다. 그러나 이 API는 "약 N% 정도 겹친다면 어떤 작업을 수행해야 한다"는 더 일반적인 사용 사례를 다룹니다. ## 교차 관찰자 개념과 사용