See the Pen Scroll to Change Background Color by techcode sample (@techcode-sample) on CodePen.
HTML
まず、基本的なHTML構造を用意します。
htmlコードをコピーする<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scroll Background Color Animation</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="header">
<h1>Scroll to Change Background Color</h1>
</header>
<main>
<p>Scroll down to see the background color change...</p>
<!-- 長いコンテンツを追加 -->
<div style="height: 2000px;"></div>
</main>
<script src="script.js"></script>
</body>
</html>
CSS
次に、基本的なスタイルを設定します。
cssコードをコピーする/* styles.css */
body {
margin: 0;
font-family: 'Arial', sans-serif;
background-color: #f5f7fa;
transition: background-color 0.5s ease;
}
.header {
width: 100%;
height: 80px;
background: rgba(0, 0, 0, 0.7);
color: white;
display: flex;
align-items: center;
justify-content: center;
position: fixed;
top: 0;
left: 0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
z-index: 10;
}
.header h1 {
font-size: 1.5em;
font-weight: 300;
}
main {
margin-top: 80px;
padding: 20px;
}
p {
font-size: 1.2em;
text-align: center;
color: #333;
}
JavaScript
最後に、スクロールイベントを監視して背景色を変更するJavaScriptコードを追加します。
javascriptコードをコピーする// script.js
window.addEventListener('scroll', () => {
const maxScroll = document.body.scrollHeight - window.innerHeight;
const scrollFraction = window.scrollY / maxScroll;
// スクロールの割合に応じて背景色を計算
const red = Math.min(255, Math.floor(scrollFraction * 510));
const blue = 255 - Math.min(255, Math.floor(scrollFraction * 510));
document.body.style.backgroundColor = `rgb(${red}, 150, ${blue})`;
});
詳細な説明
- HTML:
- 基本的なページ構造を作成し、
header
タグにはサイトのタイトルを表示するh1
要素を含めています。 main
タグにはスクロールイベントをテストするために長いコンテンツを追加しています。
- 基本的なページ構造を作成し、
- CSS:
body
には基本の背景色とフォントスタイルを設定し、背景色の変化をスムーズにするためにtransition
プロパティを追加しています。- ヘッダーのスタイルを設定し、固定位置に配置しています。
- JavaScript:
window
オブジェクトのscroll
イベントを監視し、スクロール位置に応じて背景色を変更します。scrollY
プロパティで現在のスクロール位置を取得し、ページ全体の高さに対するスクロールの割合を計算します。- この割合を使用して、赤と青の値を計算し、
backgroundColor
プロパティを更新します。
これで、ページをスクロールすると背景色が変わるアニメーションを実現できます。実際に動作を確認してみてください。