0.1.6 • Published 2 years ago

@speaker-ender/js-position-helpers v0.1.6

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

JS-Position-Helpers

DEMO

Basic JS Position Tools For HTML Elements

Provides safe cross-browser support for fetching positional information about html elements

Functions

documentHeight()

Fetches the maximum height of your webpage by using the document body and the html element.
Returns 0 if the document or html element do not exist.

windowWidth()

Fetches the width of the window.
Returns 0 if the window and document element do not exist

windowHeight()

Fetches the height of the window.
Returns 0 if the window and document element do not exist

scrollTop()

Fetches the distance of the viewport from the top of the page.
Returns 0 if the window and document element do not exist

scrollLeft(element)

Fetches the distance of the viewport from the left of the page or the distance of the left side of element from the left side of the viewport.
Returns 0 if the window and document element do not exist

height(element)

Fetches the height of the element passed to the function

height(element)

Fetches the width of the element passed to the function

topPosition(element)

Fetches the distance of the top of the element passed to the function from the top of the viewport

relativeTopPosition(element)

Fetches the distance of the top of the element passed to the function from the top of the page

bottomPosition(element)

Fetches the distance of the bottom of the element passed to the function from the top of the viewport

relativebottomPosition(element)

Fetches the distance of the bottom of the element passed to the function from the top of the page

leftPosition(element, container)

Fetches the distance of the left edge of the element passed to the function from the left of the viewport

rightPosition(element)

Fetches the distance of the right edge of the element passed to the function from the right of the viewport

inViewport(element)

Returns true if all edges of the element passed to the function are inside of the viewport

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago