1.0.0 • Published 6 years ago

get-element-relative-offset v1.0.0

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
6 years ago

get-element-relative-offset

This package exports a function to find the position of a DOM element relative to another.

import getElementRelativeOffset from 'get-element-relative-offset';

getElementRelativeOffset(
    baseElement: HTMLElement,
    // Return true if an element is the one you want to be relative to.
    to: (parent: HTMLElement) => boolean
): {
    top: number,
    left: number,
    bottom: number,
    right: number
}