diff options
author | alattalatta <urty5656@gmail.com> | 2021-11-28 21:47:30 +0900 |
---|---|---|
committer | hochan Lee <hochan049@gmail.com> | 2021-12-13 00:45:04 +0900 |
commit | 321e9f39e87510a6317a1f9c5c993523294da4a5 (patch) | |
tree | b69a43762f24b23d00b113b0959a4ca2de5fdad7 /files/ko/web/api/intersectionobserver/disconnect | |
parent | bd6329150011e7af74cbd5bf344d5e1a86935060 (diff) | |
download | translated-content-321e9f39e87510a6317a1f9c5c993523294da4a5.tar.gz translated-content-321e9f39e87510a6317a1f9c5c993523294da4a5.tar.bz2 translated-content-321e9f39e87510a6317a1f9c5c993523294da4a5.zip |
Rewrite and add IntersectionObserver methods
Diffstat (limited to 'files/ko/web/api/intersectionobserver/disconnect')
-rw-r--r-- | files/ko/web/api/intersectionobserver/disconnect/index.md | 40 |
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()")}} |