Javascript viewport element visibility library
ViewportDetector is a lightweight (1kb Gzipped) dependancy free library to detect if an element is shown in the viewport (or another container) or not. It use requestAnimationFrame API to be without any impact on the performance.
Just include the minified version of ViewportDetector.js on your website :
<script src="viewportdetector/build/viewportdetector.min.js"></script>
To use viewport detector, create a new instance :
var detector = new ViewportDetector({
selector: '.element',
callback: myCallback
});
Here is the list of available parameters :
Name | Default value | Description |
---|---|---|
callback | Null | Callback to execute on visibility change. Callback receive 2 parameters, the DOMElement and the Visibility (boolean). Required |
selector | Null | Element selector. Required |
opts.marge | Null | Marge to expand or reduce element detection size. |
opts.container | window | Container selector within detection should happen. |
Here is the list of available APIs :
Name | Description |
---|---|
add(selector, callback, opts) | Add en element to detect into a instance of ViewportDetector. |
MIT
Made by Spope