withinviewport

Determine whether an element is completely within the browser viewport


Keywords
viewport, IntersectionObserver, window, DOM, visible, visibility, element, view, within-viewport, browser, detect, event, infinite-scroll, scroll, javascript, viewport-dimensions
License
BSD-3-Clause
Install
npm install withinviewport@3.0.1

Documentation

Within Viewport

Determine whether elements are completely within the viewport

Includes:

  • The synchronous function, withinViewport()
  • The asynchronous, promise-based function, withinViewportAsync()
  • Optional jQuery plugin with handy selectors and shorthand methods
  • TypeScript support
  • Support for CommonJS and ESM modules

All of the above offer the same features.

Install

yarn add withinviewport

or

npm install withinviewport

And then in your JavaScript or TypeScript:

import { withinViewport /* or withinViewportAsync */ } from 'withinviewport'

Both CommonJS and ESM modules are provided.

Usage

Basic

// Returns true if the element is entirely within view of the window
const elem = document.getElementById('#myElement')

withinViewport(elem) // returns a boolean
withinViewportAsync(elem) // returns a Promise<boolean>

Advanced

All options work the same for both the synchronous and asynchronous functions.

// Test against only some sides of the window for faster performance
withinViewport(elem, { left: 'ignore' })
// Pick another element to act as the viewport (instead of `window`)
withinViewport(elem, { container: document.getElementById('myElem') })
// Define your own viewport crop by specifying thresholds for each side
// Example: element is at least 12px inside the top and right of the viewport
withinViewport(elem, { top: 12, right: 12 })

For more options, see Options section below.

Shorthand notation

// This will only check the bottom and right of the viewport, ignoring the top and left
withinViewport(elem, 'bottom right')
left(elem)

jQuery plugin

Be sure to include the full version of the script as well

<script src="withinviewport.js"></script>
<script src="jquery.js"></script>
<script src="jquery.withinviewport.js"></script>

Basic usage

// Returns true if the element is entirely within the viewport
$('#myElement').is(':within-viewport')
// Returns a jQuery object of all <div>s that are within the viewport
$('div').withinViewport()

Advanced usage

There are shorthand selectors and methods for testing against only one edge of the viewport.

// Returns true if the element is within the left edge of the viewport
// Also works with 'top', 'right', and 'bottom'
$('#myElement').is(':within-viewport-left')
// Returns a jQuery collection of all <div>s within the left edge of the viewport
$('div').withinViewportLeft()
// Same as above, but only elements that are at least 12px inside the left edge
$('div').withinViewportLeft({ left: 12 })

These shortcuts will result in slightly better performance if you're testing hundreds or thousands of elements.

Live updating

If you're looking to keep tabs on elements' whereabouts at all times, you can bind to the window's resize and scroll events. However, for performance reasons, it's strongly recommended to throttle your event listener or use something like James Padolsey's scrollStop event. Firing on every window.scroll event will bring your UI to its knees.

$(window).on('resize scrollStop', _.throttle(function() {
    // Your code here...

    // Example:
    $('div')
        // Momentarily declare all divs out of the viewport...
        .removeClass('within-viewport')
        // Then filter them to reveal which ones are still within it
        .filter(':within-viewport')
            .addClass('within-viewport')
}, 100));

Options

All options work the same across the synchronous and asynchronous functions and the jQuery plugin.

Custom viewport element

If you want to test whether an element is within a scrollable parent element (e.g. which has overflow: auto or scroll), assign the parent element to the container property:

withinViewport(elem, {
    container: document.querySelector('.parent-element')
})

Custom boundaries

For example, a fixed header with a height of 100px that spans the entire width of the page effectively lowers the viewport by 100px from the top edge of the browser window:

withinViewport(elem, { top: 100 })

If you only care about some edges of the viewport, you can specify them to improve performance:

withinViewport(elem, 'left bottom')

You can also combine optins:

withinViewport(elem, { left: 40, container: myDiv })
$('div').withinViewport({ right: -70, top: 'ignore' })

You can specify negative threshold values to allow elements to reside outside the viewport.

Migrating from v2 to v3

The sides option has been deprecated. The following calls are equivalent:

// 2.x: specifying which sides to *monitor*
withinViewport(elem, { sides: ['left', 'right']})

// 3.x: specifying which sides to *ignore*
withinViewport(elem, { top: 'ignore', bottom: 'ignore' })

Browser Support

For the synchronous functions:

  • IE 7(?) and higher
  • All the others except Opera Mini
    • Tested in the latest stable Chrome, Firefox, Safari, and Edge

The asynchronous functions work in any browser that supports promises and IntersectionObserver.

All functions (both versions) are transpiled to ES5.

Credit

Within Viewport is inspired by these similar utilities which only reflect whether an element is at least partially in view:

License

Have fun with it — BSD-3-Clause. See included LICENSE file.

Author

Craig Patik