useIntersectionObserver
ターゲット要素の可視性を検出します。
デモ
使用法
vue
<script setup>
import { useIntersectionObserver } from '@vueuse/core'
import { ref } from 'vue'
const target = ref(null)
const targetIsVisible = ref(false)
const { stop } = useIntersectionObserver(
target,
([entry], observerElement) => {
targetIsVisible.value = entry?.isIntersecting || false
},
)
</script>
<template>
<div ref="target">
<h1>Hello world</h1>
</div>
</template>
ディレクティブの使用法
この関数は、
@vueuse/components
パッケージを介してディレクティブバージョンも提供します。使用法について詳しくはこちらをご覧ください。
vue
<script setup lang="ts">
import { vIntersectionObserver } from '@vueuse/components'
import { ref } from 'vue'
const root = ref(null)
const isVisible = ref(false)
function onIntersectionObserver([entry]: IntersectionObserverEntry[]) {
isVisible.value = entry?.isIntersecting || false
}
</script>
<template>
<div>
<p>
Scroll me down!
</p>
<div v-intersection-observer="onIntersectionObserver">
<p>Hello world!</p>
</div>
</div>
<!-- with options -->
<div ref="root">
<p>
Scroll me down!
</p>
<div v-intersection-observer="[onIntersectionObserver, { root }]">
<p>Hello world!</p>
</div>
</div>
</template>
型宣言
型宣言を表示
typescript
export interface UseIntersectionObserverOptions extends ConfigurableWindow {
/**
* Start the IntersectionObserver immediately on creation
*
* @default true
*/
immediate?: boolean
/**
* The Element or Document whose bounds are used as the bounding box when testing for intersection.
*/
root?: MaybeComputedElementRef | Document
/**
* A string which specifies a set of offsets to add to the root's bounding_box when calculating intersections.
*/
rootMargin?: string
/**
* Either a single number or an array of numbers between 0.0 and 1.
* @default 0
*/
threshold?: number | number[]
}
export interface UseIntersectionObserverReturn extends Pausable {
isSupported: Ref<boolean>
stop: () => void
}
/**
* Detects that a target element's visibility.
*
* @see https://vueuse.dokyumento.jp/useIntersectionObserver
* @param target
* @param callback
* @param options
*/
export declare function useIntersectionObserver(
target:
| MaybeComputedElementRef
| MaybeRefOrGetter<MaybeElement[]>
| MaybeComputedElementRef[],
callback: IntersectionObserverCallback,
options?: UseIntersectionObserverOptions,
): UseIntersectionObserverReturn
ソース
貢献者
変更履歴
v12.0.0-beta.1
2024/11/21v11.1.0
2024/09/16v11.0.0-beta.2
2024/07/17v10.0.2
2023/04/14v10.0.1
2023/04/14v10.0.0
2023/04/14v10.0.0-beta.4
2023/04/13v10.0.0-beta.2
2023/03/28