useElementVisibility
Tracks the visibility of an element within the viewport.
Demo
Usage
vue
<script setup>
import { useElementVisibility } from '@vueuse/core'
import { ref } from 'vue'
const target = ref(null)
const targetIsVisible = useElementVisibility(target)
</script>
<template>
<div ref="target">
<h1>Hello world</h1>
</div>
</template>
rootMargin
If you wish to trigger your callback sooner before the element is fully visible, you can use the rootMargin
option (See MDN IntersectionObserver/rootMargin).
ts
const targetIsVisible = useElementVisibility(target, {
rootMargin: '0 0 100px 0',
})
Component Usage
This function also provides a renderless component version via the
@vueuse/components
package. Learn more about the usage.
vue
<template>
<UseElementVisibility v-slot="{ isVisible }">
Is Visible: {{ isVisible }}
</UseElementVisibility>
</template>
Directive Usage
This function also provides a directive version via the
@vueuse/components
package. Learn more about the usage.
vue
<script setup>
import { vElementVisibility } from '@vueuse/components'
import { ref } from 'vue'
const target = ref(null)
const isVisible = ref(false)
function onElementVisibility(state) {
isVisible.value = state
}
</script>
<template>
<div v-element-visibility="onElementVisibility">
{{ isVisible ? 'inside' : 'outside' }}
</div>
<!-- with options -->
<div ref="target">
<div v-element-visibility="[onElementVisibility, { scrollTarget: target }]">
{{ isVisible ? 'inside' : 'outside' }}
</div>
</div>
</template>
Type Declarations
typescript
export interface UseElementVisibilityOptions
extends ConfigurableWindow,
Pick<UseIntersectionObserverOptions, "threshold"> {
/**
* @see https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver/rootMargin
*/
rootMargin?: MaybeRefOrGetter<string>
/**
* The element that is used as the viewport for checking visibility of the target.
*/
scrollTarget?: MaybeRefOrGetter<HTMLElement | undefined | null>
}
/**
* Tracks the visibility of an element within the viewport.
*
* @see https://vueuse.org/useElementVisibility
*/
export declare function useElementVisibility(
element: MaybeComputedElementRef,
options?: UseElementVisibilityOptions,
): Ref<boolean, boolean>
Source
Contributors
Anthony Fu
Scott Bedard
Anthony Fu
wheat
Amr Bashir
Dominik Ritter
huiliangShen
ziolko-appfire
erikwu
Curt Grimes
vaakian X
sun0day
三咲智子
Jelf
webfansplz
AllenYu
Ary Raditya
Chung, Lian
Carlos Yanes
Alex Kozack
Changelog
v12.1.0
on 12/22/2024v12.0.0-beta.1
on 11/21/2024v10.8.0
on 2/20/2024v10.7.0
on 12/5/2023v10.4.0
on 8/25/2023v10.0.0-beta.4
on 4/13/20234d757
- feat(types)!: rename MaybeComputedRef
to MaybeRefOrGetter
v10.0.0-beta.2
on 3/28/2023v9.11.0
on 1/17/2023