Preloader
プリローダー
どんな動き?
サイトを開いた直後、コンテンツの代わりにロゴとプログレスバーを表示し、読み込みが完了するとカーテンが上がるように消えて本編が現れるオープニング演出。ユーザーを待たせる時間を退屈させず、ブランドの第一印象を強く残せる。CSSとJavaScriptだけのシンプルな実装からGSAPを使った凝った演出まで幅広く、ブランドサイトやポートフォリオサイトの開幕を飾る定番要素として使われる。
よく使う場所
ブランドサイトポートフォリオキャンペーンLP
日本語での表現例
こんな言葉で説明される動きです。
AIへの指示文(プロンプト)
ChatGPTやClaudeなどの生成AIに、このままコピーして渡せます。「詳細版」を使うと実装結果が安定しやすくなります。
Show a logo and progress bar over a full-screen overlay on first load, then slide the overlay away once loading completes.Trigger:
Page load.
Initial state:
Overlay: covers the full viewport, opacity: 1
Bar: width 0%
Animation:
The bar fills from 0% to 100% while the logo sits centered on the overlay; once the bar completes, the overlay slides upward and off-screen, revealing the page underneath.
Final state:
Overlay: off-screen above the viewport
Page content: fully visible
Timing:
duration: 1.2–1.8s for the fill, then 0.5–0.6s for the overlay slide-away, easing: ease-out. Play once on load.実装方法の候補
この動きは以下の技術で実装できます。
CSSJavaScriptGSAP
別名・関連ワード
Page PreloaderLoading ScreenIntro Loader