dragoon0x/everything-design-taste

scroll-behavior-design

Scroll-based interactions, scroll snapping, parallax alternatives, and scroll-linked animation.

First seen Jul 18, 2026

Installation

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

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,140 B
  • docs SUMMARY.md 125 B

History

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

SKILL.md

Scroll Behavior Design

Scroll Patterns

Scroll Snap

.container {
  scroll-snap-type: y mandatory; /* or x, or proximity */
}
.section {
  scroll-snap-align: start;
}

Use for: full-page sections, image galleries, card carousels.

Scroll-Linked Animation

  • Reveal elements as they enter viewport.
  • Use IntersectionObserver (not scroll event listeners).
  • Subtle fade + translateY is the safest bet.
  • Don't animate on every scroll pixel (performance).

Sticky Elements

  • Sticky headers: useful for long pages.
  • Sticky sidebars: useful for comparison pages.
  • Sticky CTAs: useful for long forms or product pages.
.sticky { position: sticky; top: 0; }

Anti-Patterns

  • Parallax that causes motion sickness.
  • Scroll hijacking (overriding native scroll speed).
  • Animations that play on every scroll (jarring on scroll up).
  • Infinite scroll without position memory.