Skip to content

Files

Latest commit

146a99c · Jan 23, 2023

History

History
94 lines (55 loc) · 2.9 KB

README.md

File metadata and controls

94 lines (55 loc) · 2.9 KB

bianco.viewport

Build Status NPM version NPM downloads MIT License

Usage

import viewport from 'bianco.viewport'

// get the current scroll top position
const offsetTop = viewport.scrollTop()

API

Table of Contents

scrollbarWidth

Return the size of the scrollbar that depends on the browser or device used on the client

Returns number the browser scrollbar width

documentHeight

Get the height of the whole page

Returns number height in px of the document

documentWidth

Get the width of the whole page

Returns number width in px of the document

scrollTop

Return amount of px scrolled from the top of the document

Returns number scroll top value in px

scrollLeft

Return amount of px scrolled from the left of the document

Returns number scroll left value in px

elementOffsetTop

Get the offset top of any DOM element

Parameters

Returns number the element y position in px

elementOffsetLeft

Get the offset left of any DOM element

Parameters

Returns number the element x position in px