vue-observe-visibility
Vue 2.x directive using Intersection Observer API that detects if the element is visible (in the viewport and not hidden by CSS).
Installation
npm install --save vue-observe-visibility
This also works on components:
```html
<MyComponent v-observe-visibility="visibilityChanged" />
The function will be called whenever the visiblity of the element changes with the argument being a boolean (true
means the element is visible on the page, false
means that it is not).
The second argument is the corresponding IntersectionObserverEntry object.
Passing custom arguments
You can add custom argument by using an intermediate function:
Here visibilityChanged
will be call with a third custom argument customArgument
.