Vue 2 mixin to determine when a DOM element is visible in the client window by updating Vue data values using the IntersectionObserver. You can then use those data values to do things like trigger transitions.
You may want to check out the directive vesion of this package: vue-in-viewport-directive.
Demo: https://bkwld.github.io/vue-in-viewport-mixin
This package depends on the IntersectionObserver API which needs a polyfill for old browsers, including all of IE. Consider using the W3C IntersectionObserver polyfill.
-
Just require the mixin from your component and use it with
watch
:inViewport = require('vue-in-viewport-mixin'); module.exports = { mixins: [ inViewport ], watch: { 'inViewport.now': function(visible) { console.log('This component is '+( visible ? 'in-viewport' : 'hidden')); } } }
-
Use the optional offset props to configure the component:
<large-copy :in-viewport-root-margin='-50% 0%' :in-viewport-once='true'> </large-copy>
-
Use data values within your component to trigger transitions (or do other things):
<div class='.large-copy'> <transition name='fade'> <h1 v-show='inViewport.now'>{{ copy.title }}</h1> </transition> </div>
-
It's worth nothing that the IntersectionObserver counts an element as intersecting the viewport when it's top offset is equal to the height of height of the page. For instance, if you have an element with
margin-top: 100vh
, that actually counts as intersecting and this mixin will haveinViewport.now == true
.
-
in-viewport-active (true)
- Whether to listen update the mixin data. Setting tofalse
later in the lifecyle will remove listeners and setting back totrue
will re-apply listeners. -
in-viewport-once (false)
- Whether to remove listeners once the component enters viewport. If the component is in viewport when mounted, listeners are never added. -
in-viewport-root-margin (0px 0px -1px 0px)
- Specify the IntersectionObserver rootMargin. For example, set to "-20% 0%" to delay theinViewport.now
from switching state until your component is 20% of the viewport height into the page. This defaults to0px 0px -1px 0px
so that a target that is positioned at100vh
registers as not in viewport. -
in-viewport-root
- Specify the IntersectionObserver root. Defaults to the browser viewport. -
in-viewport-threshold ([0,1])
- Specify the IntersectionObserver threshold. The defaults should work for most cases.
The whole point of this package is for you to make use of this data to do stuff. The following describes the data that is mixed into your component. Note that all properties are namespaced under inViewport
.
data: {
inViewport: {
now: Boolean // Is some part of the component currently in the viewport?
fully: Boolean // Is the component completely in the viewport?
above: Boolean // Is any part of the component above the viewport?
below: Boolean // Is any part of the component below the viewport?
}
}
- Start Storybook:
yarn storybook
- Open Cypress:
yarn cypress open
The Travis tests that run on deploy run against the demo site which gets updated as part of the npm version
commands.