Sticky Scroll
スティッキースクロール
どんな動き?
2カラムレイアウトで片方(画像や図解など)をposition: stickyで固定し、もう片方のテキストコンテンツだけがスクロールに合わせて流れていく構成。読み進めるほど固定側の情報と連動させやすく、機能説明や比較コンテンツ、ステップ解説のセクションで多用される。
よく使う場所
機能紹介セクションステップ解説比較コンテンツ
日本語での表現例
こんな言葉で説明される動きです。
AIへの指示文(プロンプト)
ChatGPTやClaudeなどの生成AIに、このままコピーして渡せます。「詳細版」を使うと実装結果が安定しやすくなります。
Stick one column in place while the opposite column scrolls past it.Trigger:
Scroll position within a two-column section.
Start:
The sticky column reaches the top of the viewport.
End:
The scrolling column finishes its content; the sticky column unpins as the section ends.
Behavior:
One column sticks in place for the duration of the section while the opposite column's content scrolls past it, keeping the two visually paired.
Initial state:
Sticky column: static, top: 0
Scrolling column: content starts at top
Final state:
Sticky column: still in place
Scrolling column: content fully scrolled past実装方法の候補
この動きは以下の技術で実装できます。
CSS position: stickyGSAP ScrollTrigger
別名・関連ワード
Sticky SidebarSticky ColumnScroll-synced Sidebar