dragoon0x/everything-design-taste

scroll-behavior

Scroll-based interactions, sticky elements, parallax, scroll-triggered animations, and scroll UX.

First seen Jul 18, 2026

Installation

$ npx skills add dragoon0x/everything-design-taste --skill scroll-behavior

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dragoon0x/everything-design-taste · top by installs.

npx skills add dragoon0x/everything-design-taste

Browse all from dragoon0x/everything-design-taste

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 11
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,344 B
  • docs SUMMARY.md 120 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Scroll Behavior

Sticky Elements

Element When to Stick
Header/nav Long pages where nav access matters
Table header Long tables where column context matters
Sidebar When content scrolls but tools should stay visible
CTA button When the primary action needs to be always reachable
Tab bar When tabs scroll away from their content

Scroll-Triggered Animations

  • Fade-in on scroll: elements appear as they enter viewport
  • Parallax: background moves slower than foreground (use sparingly)
  • Progress bar: shows reading progress for articles
  • Reveal on scroll: elements build in as user scrolls

Rules

  1. Scrolljacking (overriding native scroll behavior) is almost always wrong
  2. Parallax: maximum one layer, subtle, and respect prefers-reduced-motion
  3. Sticky elements steal screen space, budget carefully on mobile
  4. Scroll-triggered animations should only fire once (not re-trigger on scroll up)
  5. Back-to-top button: show after scrolling 2+ viewport heights
  6. Scroll position should persist on navigation (back button returns to scroll position)