@localnerve/jump-scroll
v0.9.21
Published
A small, fast, no-dep, jump-scroll web component
Downloads
224
Maintainers
Readme
jump-scroll
A small, fast, no-dependency, jump scroll webcomponent.
Live example
https://localnerve.github.io/ui-elements/dist/jump-scroll/
Summary
A native web component scrolling assistant that allows a user to jump to author defined page target sections.
Navigation options: [next, previous, first, last].
Non-browser module exports build helpers (for building CSP rules, etc).
Web Details
- ~13k full, ~4.4k gzip
- Axe core 4.8.2 pass
Attributes and Properties
target
- Required. A selector that defines all the target elements to vertically "jump scroll" to in a page. Defaults to"section"
.scrollcontainer
- Optional. A selector that defines the scroll container. Defaults to the common ancestor oftarget
elements.
If the selector provided selects more than one element, only the first element found is used as the scroll container.Property name is
scrollContainer
(camel case).display
- Optional. Values:"best" | "both"
. Defaults to"best"
.
"best" - Default. The control displays either [top, previous] OR [bottom, next] jump scrolling control surface. Which one is displayed depends on the position on the page and the direction of scrolling. If the user is in the middle of the page and scrolls, the control only displays the jump scroll options in the direction of the scroll. If near the end, turns in the opposite direction. Less vertical space required.
"both" - The control displays both [top, previous] AND [bottom, next] jump scrolling options simulataneously. Larger footprint.colormap
- Optional. A map of targets to colors. Changes the color of the jump-scroll control over specific elements. Defaults to nothing.
Format:selector@color[/focus-color][;selector@color[/focus-color]]*
selector - String. Must be a selector of DOM element(s). When a selected element crosses the vertical bounds of thejump-scroll
control, thejs-bg-color
background will be changed to the color (or variable) provided.
color - CssColor|CssCustomProperty. A css color or a custom property (variable) of a color to use for thejs-bg-color
background of the control.
focus-color - CssColor|CssCustomProperty. Optional. A css color or a custom property (variable) of a color to use for thejs-bg-color-focus
of the control. If missing, defaults tojs-bg-color-focus
.enablekeyboard
- Optional. Values:"true" | "false"
. Defaults to"true"
.
Enables keyboard scrolling by handling the following keydown events at the definedscrollcontainer
or common scroll target ancestor:PageDown | Space
- Jumps to the next scroll target.PageUp | Shift+Space
- Jumps to the previous scroll target.Shift+PageDown
- Jumps to the bottom scroll target.Shift+PageUp
- Jumps to the top scroll target.
Property name is
enableKeyboard
(camel case).
Overridable CSS Variables
--js-width
- The overall width of the control. Defaults to 3rem.--js-aspect-ratio
- The aspect ratio of the control. Defaults to 1/5.--js-bg-color
- The color of the control arrows. Defaults to black.--js-bg-color-focus
- The color of the arrow on focus. Defaults todarkorange
.--js-bg-spread-focus
- The spread of the focus glow indicator. Defaults to 8px.--js-opacity-full
- The opacity of the control arrows at attention. Defaults to 0.8.--js-opacity-rest
- The opacity of the control arrows at rest. Defaults to 0.5.--js-attach-right
- The distance from the fixed, right-edge attachment. Defaults to 1rem;--js-attach-bottom
- The distance form the fixed, bottom-edge attachment. Defaults to 1rem;
Javascript Properties and Methods
currentTarget
Property - Assign anHTMLElement
to set the component's internal currentTarget. The suppliedHTMLElement
must be known to the internal component target map of elements (found with the suppliedtarget
selector). Get this property to audit the component's internal currentTarget.jumpScroll(HTMLElement)
Method - Jump directly to the givenHTMLElement
. The suppliedHTMLElement
must be known to the internal component target map of elements (found with the suppliedtarget
selector).
Usage Example
<jump-scroll target="article" display="best" colormap="footer,article:nth-of-type(even)@--bg-color"></jump-scroll>
See The reference implementation for more detailed usage example.
Non-browser Exports
The non-browser version of the module exports methods to help with builds.
{Promise} getJumpScrollCssText()
Asynchronously gets the raw shadow css text.
Useful for computing the hash for a CSP style rule.
Returns a Promise that resolves to the full utf8 string of css text.
License
LocalNerve BSD-3-Clause Licensed
Contact
twitter: @localnerve email: [email protected]