aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/intersectionobserver/disconnect
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/api/intersectionobserver/disconnect')
-rw-r--r--files/ko/web/api/intersectionobserver/disconnect/index.md40
1 files changed, 40 insertions, 0 deletions
diff --git a/files/ko/web/api/intersectionobserver/disconnect/index.md b/files/ko/web/api/intersectionobserver/disconnect/index.md
new file mode 100644
index 0000000000..692567c386
--- /dev/null
+++ b/files/ko/web/api/intersectionobserver/disconnect/index.md
@@ -0,0 +1,40 @@
+---
+title: IntersectionObserver.disconnect()
+slug: Web/API/IntersectionObserver/disconnect
+tags:
+ - API
+ - Disconnect
+ - Intersection Observer
+ - Intersection Observer API
+ - IntersectionObserver
+ - Method
+ - Reference
+browser-compat: api.IntersectionObserver.disconnect
+translation_of: Web/API/IntersectionObserver/disconnect
+---
+{{APIRef("Intersection Observer API")}}
+
+{{domxref("IntersectionObserver")}}의 **`disconnect()`** 메서드는 감지기의 모든 가시성 변화 주시 대상을 해제합니다.
+
+## 구문
+
+```js
+intersectionObserver.disconnect();
+```
+
+### 반환 값
+
+`undefined`.
+
+## 명세
+
+{{Specifications}}
+
+## 브라우저 호환성
+
+{{Compat}}
+
+## 같이 보기
+
+- {{domxref("IntersectionObserver.observe", "observe()")}}
+- {{domxref("IntersectionObserver.unobserve", "unobserve()")}}