Skip to content

useIntersectionObserver

类别
导出体积
646 B
上次更改
last week

检测目标元素可见性的变化。

示例

RootMargin: 0px 0px 0px 0px

向下滚动我!

Hello world!

元素 外部 视口

使用方法

vue
<script setup lang="ts">
import { 
useIntersectionObserver
} from '@vueuse/core'
import {
shallowRef
,
useTemplateRef
} from 'vue'
const
target
=
useTemplateRef
('target')
const
targetIsVisible
=
shallowRef
(false)
const {
stop
} =
useIntersectionObserver
(
target
,
([
entry
],
observerElement
) => {
targetIsVisible
.
value
=
entry
?.
isIntersecting
|| false
}, ) </script> <template> <
div
ref
="
target
">
<
h1
>Hello world</
h1
>
</
div
>
</template>

指令使用

vue
<script setup lang="ts">
import { 
vIntersectionObserver
} from '@vueuse/components'
import {
shallowRef
,
useTemplateRef
} from 'vue'
const
root
=
useTemplateRef
('root')
const
isVisible
=
shallowRef
(false)
function
onIntersectionObserver
([
entry
]: IntersectionObserverEntry[]) {
isVisible
.
value
=
entry
?.
isIntersecting
|| false
} </script> <template> <
div
>
<
p
>
向下滚动! </
p
>
<
div
v-intersection-observ
er="
onIntersectionObserver
">
<
p
>Hello world!</
p
>
</
div
>
</
div
>
<!-- 使用选项 --> <
div
ref
="
root
">
<
p
>
向下滚动! </
p
>
<
div
v-intersection-observ
er="
[
onIntersectionObserver
, {
root
}]
">
<
p
>Hello world!</
p
>
</
div
>
</
div
>
</template>

IntersectionObserver MDN 文档

类型声明

ts
export interface UseIntersectionObserverOptions extends ConfigurableWindow {
  /**
   * 在创建时立即启动 IntersectionObserver
   *
   * @default true
   */
  
immediate
?: boolean
/** * 用作边界框的元素或文档,用于测试相交时使用的边界框。 */
root
?:
MaybeComputedElementRef
| Document
/** * 一个字符串,指定计算相交时要添加到根边界框的偏移量集。 */
rootMargin
?:
MaybeRefOrGetter
<string>
/** * 单个数字或介于 0.0 和 1 之间的数字数组。 * @default 0 */
threshold
?: number | number[]
} export interface UseIntersectionObserverReturn extends Supportable, Pausable {
stop
: () => void
} /** * Detects changes to a target element's visibility. * * @see https://vueuse.org/useIntersectionObserver * @param target * @param callback * @param options */ export declare function
useIntersectionObserver
(
target
:
|
MaybeComputedElementRef
|
MaybeRefOrGetter
<
MaybeElement
[]>
|
MaybeComputedElementRef
[],
callback
: IntersectionObserverCallback,
options
?: UseIntersectionObserverOptions,
): UseIntersectionObserverReturn

源码

源码演示文档

贡献者

Anthony Fu
一纸忘忧
Anthony Fu
IlyaL
Vida Xie
Alex Liu
远方os
Jelf
webfansplz
一纸忘忧
Sam Blowes
E66
Yu Lia
Kevin Luo
IlyaL
我想静静
cyril
Hongkun
Sma11X
schelmo
Fernando Fernández
Curt Grimes
Waleed Khaled
Hassan Zahirnia
karma
Shinigami
Alex Kozack
Jacob Clevenger
Antério Vieira
Evgeniy Gavrilov
听风吟丶

更新日志

Pending for release...
1d9c4 - fix(docs): typos in useManualRefHistory, useFocusWithin, useStorageAsync, useIntersectionObserver (#5329)
53abe - feat: make rootMargin reactive (#4934)
8c521 - feat(components)!: refactor components and make them consistent (#4912)
7432f - feat(types): deprecate MaybeRef and MaybeRefOrGetter in favor of Vue's native (#4636)
021d0 - feat(toArray): new utility function (#4432)
59f75 - feat(toValue): deprecate toValue from @vueuse/shared in favor of Vue's native
0a9ed - feat!: drop Vue 2 support, optimize bundles and clean up (#4349)
6b584 - fix: add Document type for root (#4210)
13e36 - fix!: update the threshold default to 0 (#4069)