← All examples

Basic A11y Scroll Cue examples

Narrow the viewport, then use touch, a trackpad, or keyboard scrolling to reveal the overflowing content.

Comparison table

Plan comparison
Feature Starter Pro Team Enterprise
Projects 3 20 Unlimited Unlimited
Support Email Email and chat Priority chat Dedicated team

Code sample

import { createA11yScrollCue } from "a11y-scroll-cue";
import "a11y-scroll-cue/styles.css";

const root = document.querySelector("[data-a11y-scroll-cue]");
if (root instanceof HTMLElement) {
  createA11yScrollCue(root, { regionLabel: "Wide content example" });
}

Article cards

Keyboard

Reach and scroll the region without a pointer.

Touch

Make swipeable content discoverable.

Responsive

Remove the cue automatically when content fits.

Cleanup

Restore plugin-added attributes during teardown.