9月更新・前月(8月)の人気記事トップ10 09/02/2024
- ( 01 – ) 【Labs】position:absoluteとwidth:100%を指定すると横幅の設定がうまくいかない場合の対処方法について
- ( 07 ↑) 【Mac】macOSをHigh SierraからMontereyにアップグレード
- ( 03 – ) 【Mac】横画面で撮影した動画をYouTubeショート用にMacのiMovieで縦画面に編集する方法
- ( 10 ↑) 【iPhone / iPad】iPhoneのツイッターアプリでユーザー名をコピーする方法
- (圏外↑) 【Labs】CSSだけでドロップダウンメニュー
- ( 02 ↓) 【jQuery】入門2. jQueryをHTMLに組み込む
- ( 09 ↑) 【Mac】Safariでソースコードを見る方法
- ( 04 ↓) 【jQuery】入門7. jQueryで新しいWindowを開く
- ( 06 ↓) 【2024年5月】iPad画面解像度まとめ
- (圏外↑) 【GIMP】レイヤーをロック
【Labs】ヘッダーをトップに固定してスクロールでアニメーション
こんにちは(・∀・)
今回はjQueryでヘッダーをトップに固定するスティッキーヘッダーと、スクロールするとそのヘッダーがCSSのアニメーションで拡大縮小するサンプルをご紹介します。
レスポンシブデザインに対応してます。
サンプル
HTML
jQueryを使用するのでHTMLの<head>
内にjQuery 1.x snippetを読み込みます。
Google Hosted Libraries
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<header>
<p><img src="logo.png" alt="Webデザインラボ"></p>
</header>
CSS
header {
position: absolute;
background: #ccc;
top: 0;
width: 100%;
height: 60px;
border-bottom: none;
box-shadow: 0 1px 2px #aaa;
}
header #toplogo {
margin-top: 0;
}
@keyframes anim1 {
0% { height: 60px; }
100% { height: 40px; }
}
@keyframes anim2 {
0% { height: 40px; }
100% { height: 60px; }
}
@keyframes anim3 {
0% { width: 200px; height: 40px; }
100% { width: 100px; height: 20px; }
}
@keyframes anim4 {
0% { width: 100px; height: 20px; }
100% { width: 200px; height: 40px; }
}
.fixed {
position: fixed;
height: 40px;
animation: 0.5s forwards anim1;
text-align: center;
}
.fixed2 {
position: fixed;
height: 60px;
animation: 0.2s backwards anim2;
text-align: center;
}
.fixed section h2 img {
width: 100px;
height: 20px;
animation: 0.5s forwards anim3;
}
.fixed2 section h2 img {
width: 200px;
height: 40px;
animation: 0.2s backwards anim4;
}
.sample-demo {
margin: 0;
padding: 0;
}
h3 {
margin-top: 60px;
margin-bottom: 10px;
}
.container {
position: relative;
overflow: hidden;
font-size: 28px;
color: #333;
box-sizing: border-box;
}
.container .box1 {
position: relative;
min-height: 100vh;
box-sizing: border-box;
text-align: left;
padding: 10px;
background: #fff;
}
Result
関連リンク
【Labs】スクロールしても要素が固定するスティッキーサイドバー
【Labs】グローバルナビをトップに固定するスティッキーナビ+ドロップダウンメニュー
【Labs】グローバルナビをトップに固定するスティッキーナビ