今回はそのまま使えるスライダーアニメーションのマテリアルデザインを3つご紹介します。
シンプルなデザインとアニメーションとなっているので使い勝手の良いものになっています。
マテリアルデザインなのでそのまますぐにでもコピペして使用できるように仕上げました。
htmlとcssだけしか使っていません。
コードの説明や実際の動きも詳しくまとめてみたので自由にお使いください。
こちらのデザイン・コードはすべて完全オリジナルなのでコピペ大歓迎です。
1. シンプルでWeb制作で使いやすいスライダーアニメーション
動きは下の画像のような感じになります
コードを見る
<div id="picture">
<input type="radio" name="picture" id="pic1" checked>
<input type="radio" name="picture" id="pic2">
<input type="radio" name="picture" id="pic3">
<input type="radio" name="picture" id="pic4">
<div id="bg-pic">
<div class="inside">
<div class="pic pic_1">
</div>
<div class="pic pic_2">
</div>
<div class="pic pic_3">
</div>
<div class="pic pic_4">
</div>
</div>
</div>
<div id="slide-buttons">
<label for="pic1"></label>
<label for="pic2"></label>
<label for="pic3"></label>
<label for="pic4"></label>
</div>
</div>
#picture {
margin: 0 auto;
width: 500px;
max-width: 100%;
text-align: center;
}
#picture input[type=radio] {
display: none;
}
#picture label {
cursor:pointer;
text-decoration: none;
padding: 5px;
}
#bg-pic {
background: #fff;
position: relative;
z-index: 1;
width: 100%;
overflow: hidden;
/* ボックスのはみ打た部分を隠す */
}
#pic1:checked ~ #bg-pic .inside {
margin-left: 0;
}
#pic2:checked ~ #bg-pic .inside {
margin-left: -100%;
}
#pic3:checked ~ #bg-pic .inside {
margin-left: -200%;
}
#pic4:checked ~ #bg-pic .inside {
margin-left: -300%;
}
#bg-pic .inside {
transition-duration:.8s;
/* アニメーションの開始から終了までの時間を指定 */
width: 400%;
line-height: 0;
height: 300px;
}
#bg-pic .pic {
width: 25%;
float:left;
display: flex;
justify-content: center;
align-items: center;
/* 上3行でボックスをど真ん中に指定 */
height: 100%;
color: #fff;
}
#bg-pic .pic {
background-size: cover;
}
#bg-pic .pic_1 {
background-image: url("https://images.unsplash.com/photo-1473181488821-2d23949a045a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80");
}
#bg-pic .pic_2 {
background-image: url("https://images.unsplash.com/photo-1442323794357-25b2ec110967?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2850&q=80");
}
#bg-pic .pic_3 {
background-image: url("https://images.unsplash.com/photo-1498550744921-75f79806b8a7?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80");
}
#bg-pic .pic_4 {
background-image: url("https://images.unsplash.com/photo-1476820865390-c52aeebb9891?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80");
}
/* スライダーのナビゲーションボタンを指定 */
#slide-buttons {
margin: 30px 0 0;
text-align: center;
}
#slide-buttons label {
display: inline-block;
width: 10px;
height: 10px;
border-radius:100%;
background: gainsboro;
margin: 0 10px;
}
#pic1:checked ~ #slide-buttons label:nth-child(1),
#pic2:checked ~ #slide-buttons label:nth-child(2),
#pic3:checked ~ #slide-buttons label:nth-child(3),
#pic4:checked ~ #slide-buttons label:nth-child(4) {
background: #444;
}
ここがポイント!
- flexboxでbg-picの中身をど真ん中に設置
- スライダーのナビゲーションボタンを設置しボタンを押すと画像がスライドするように指定する
- そのままに使えるスライダーのマテリアルデザインに仕上げた
- transition-durationプロパティを指定して開始から終了までの自然なアニメーションを実現
2. スライダー画像に文字が表示されているシンプルなスライダーアニメーション
動きは下の画像のような感じになります
コードを見る
<div id="picture">
<input type="radio" name="picture" id="pic1" checked>
<input type="radio" name="picture" id="pic2">
<input type="radio" name="picture" id="pic3">
<input type="radio" name="picture" id="pic4">
<div id="bg-pic">
<div class="inside">
<div class="pic pic_1">
<div class="fonts">
<h2>Coffee</h2>
<p>Love it here!!</p>
</div>
</div>
<div class="pic pic_2">
<div class="fonts">
<h2>Beautiful Sky</h2>
<p>Love it here!!</p>
</div>
</div>
<div class="pic pic_3">
<div class="fonts">
<h2>Good Scenery</h2>
<p>Love it here!!</p>
</div>
</div>
<div class="pic pic_4">
<div class="fonts">
<h2>Road</h2>
<p>Love it here!!</p>
</div>
</div>
</div>
</div>
<div id="slide-buttons">
<label for="pic1"></label>
<label for="pic2"></label>
<label for="pic3"></label>
<label for="pic4"></label>
</div>
</div>
#picture {
margin: 0 auto;
width: 500px;
max-width: 100%;
text-align: center;
}
#picture input[type=radio] {
display: none;
}
#picture label {
cursor:pointer;
text-decoration: none;
padding: 5px;
}
#bg-pic {
background: #fff;
position: relative;
z-index: 1;
width: 100%;
overflow: hidden;
/* ボックスのはみ打た部分を隠す */
}
#pic1:checked ~ #bg-pic .inside {
margin-left: 0;
}
#pic2:checked ~ #bg-pic .inside {
margin-left: -100%;
}
#pic3:checked ~ #bg-pic .inside {
margin-left: -200%;
}
#pic4:checked ~ #bg-pic .inside {
margin-left: -300%;
}
#bg-pic .inside {
transition-duration:.8s;
/* アニメーションの開始から終了までの時間を指定 */
width: 400%;
line-height: 0;
height: 300px;
}
#bg-pic .pic {
width: 25%;
float:left;
display: flex;
justify-content: center;
align-items: center;
/* 上3行でボックスをど真ん中に指定 */
height: 100%;
color: #fff;
}
#bg-pic .pic {
background-size: cover;
}
#bg-pic .pic_1 {
background-image: url("https://images.unsplash.com/photo-1473181488821-2d23949a045a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80");
}
#bg-pic .pic_2 {
background-image: url("https://images.unsplash.com/photo-1442323794357-25b2ec110967?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2850&q=80");
}
#bg-pic .pic_3 {
background-image: url("https://images.unsplash.com/photo-1498550744921-75f79806b8a7?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80");
}
#bg-pic .pic_4 {
background-image: url("https://images.unsplash.com/photo-1476820865390-c52aeebb9891?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80");
}
.fonts {
opacity: 1;
margin-bottom: 50px;
}
.fonts h2 {
font-size: 40px;
margin: 60px 0;
font-weight: bold;
}
.fonts p {
font-size: 30px;
font-weight: bold;
}
/* スライダーのナビゲーションボタンを指定 */
#slide-buttons {
margin: 30px 0 0;
text-align: center;
}
#slide-buttons label {
display: inline-block;
width: 10px;
height: 10px;
border-radius:0%;
/* border-radiusを0%にしてナビゲーションボタンの形を四角形に指定 */
background: gainsboro;
margin: 0 10px;
}
#pic1:checked ~ #slide-buttons label:nth-child(1),
#pic2:checked ~ #slide-buttons label:nth-child(2),
#pic3:checked ~ #slide-buttons label:nth-child(3),
#pic4:checked ~ #slide-buttons label:nth-child(4) {
background: #444;
}
ここがポイント!
- flexboxでbg-picの中身をど真ん中に設置
- スライダーのナビゲーションボタンを設置しボタンを押すと画像がスライドするように指定する
- そのままに使えるスライダーのマテリアルデザインに仕上げた
- transition-durationプロパティを指定して開始から終了までの自然なアニメーションを実現
- スライダー画像に文字が表示されるデザインを実現
- border-radiusを0%にしてナビゲーションボタンの形を四角形に指定
3. hoverすると文字が表示されるかっこいいスライダーアニメーション
動きは下の画像のような感じになります
コードを見る
<div id="picture">
<input type="radio" name="picture" id="pic1" checked>
<input type="radio" name="picture" id="pic2">
<input type="radio" name="picture" id="pic3">
<input type="radio" name="picture" id="pic4">
<div id="bg-pic">
<div class="inside">
<div class="pic pic_1">
<div class="fonts">
<h2>Coffee</h2>
<p>Love it here!!</p>
</div>
</div>
<div class="pic pic_2">
<div class="fonts">
<h2>Beautiful Sky</h2>
<p>Love it here!!</p>
</div>
</div>
<div class="pic pic_3">
<div class="fonts">
<h2>Good Scenery</h2>
<p>Love it here!!</p>
</div>
</div>
<div class="pic pic_4">
<div class="fonts">
<h2>Road</h2>
<p>Love it here!!</p>
</div>
</div>
</div>
</div>
<div id="slide-buttons">
<label for="pic1"></label>
<label for="pic2"></label>
<label for="pic3"></label>
<label for="pic4"></label>
</div>
</div>
#picture {
margin: 0 auto;
width: 500px;
max-width: 100%;
text-align: center;
}
#picture input[type=radio] {
display: none;
}
#picture label {
cursor:pointer;
text-decoration: none;
padding: 5px;
}
#bg-pic {
background: #fff;
position: relative;
z-index: 1;
width: 100%;
overflow: hidden;
/* ボックスのはみ打た部分を隠す */
}
#pic1:checked ~ #bg-pic .inside {
margin-left: 0;
}
#pic2:checked ~ #bg-pic .inside {
margin-left: -100%;
}
#pic3:checked ~ #bg-pic .inside {
margin-left: -200%;
}
#pic4:checked ~ #bg-pic .inside {
margin-left: -300%;
}
#bg-pic .inside {
transition-duration:.8s;
/* アニメーションの開始から終了までの時間を指定 */
width: 400%;
line-height: 0;
height: 300px;
}
#bg-pic .pic {
width: 25%;
float:left;
display: flex;
justify-content: center;
align-items: center;
/* 上3行でボックスをど真ん中に指定 */
height: 100%;
background-size: cover;
transition-duration:.8s;
/* アニメーションの開始から終了までの時間を指定 */
filter: opacity(100%);
/* filterプロパティのopacityで透明度を指定 */
}
#bg-pic .pic:hover {
background-size: cover;
filter: opacity(50%);
}
#bg-pic .pic_1 {
background-image: url("https://images.unsplash.com/photo-1473181488821-2d23949a045a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80");
}
#bg-pic .pic_2 {
background-image: url("https://images.unsplash.com/photo-1442323794357-25b2ec110967?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2850&q=80");
}
#bg-pic .pic_3 {
background-image: url("https://images.unsplash.com/photo-1498550744921-75f79806b8a7?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80");
}
#bg-pic .pic_4 {
background-image: url("https://images.unsplash.com/photo-1476820865390-c52aeebb9891?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80");
}
#bg-pic .pic .fonts {
color: black;
filter: opacity(0%);
/* filterプロパティのopacityで透明度を指定 */
margin-bottom: 50px;
transition-duration:.8s;
/* アニメーションの開始から終了までの時間を指定 */
}
#bg-pic .pic:hover .fonts {
filter: opacity(100%);
/* filterプロパティのopacityで透明度を指定 */
margin-bottom: 50px;
}
.fonts h2 {
font-size: 40px;
margin: 60px 0;
font-weight: bold;
}
.fonts p {
font-size: 30px;
font-weight: bold;
}
/* スライダーのナビゲーションボタンを指定 */
#slide-buttons {
margin: 30px 0 0;
text-align: center;
}
#slide-buttons label {
display: inline-block;
width: 10px;
height: 10px;
border-radius:100%;
background: gainsboro;
margin: 0 10px;
}
#pic1:checked ~ #slide-buttons label:nth-child(1),
#pic2:checked ~ #slide-buttons label:nth-child(2),
#pic3:checked ~ #slide-buttons label:nth-child(3),
#pic4:checked ~ #slide-buttons label:nth-child(4) {
background: #444;
}
ここがポイント!
- flexboxでbg-picの中身をど真ん中に設置
- スライダーのナビゲーションボタンを設置しボタンを押すと画像がスライドするように指定する
- そのままに使えるスライダーのマテリアルデザインに仕上げた
- transition-durationプロパティを指定して開始から終了までの自然なアニメーションを実現
- filter: opacityを指定してhoverすると透明度のある背景の上に文字が表示されるデザインを実現
参考
そもそもWebデザインの基礎がわからない。。
ふたご
未経験からWeb制作で月50万稼げるようになったUdemy教材3選
でもなあ、独学だと心配だしプログラミングスクールで学びたい!。かといってお金はかけたくないし。。
ふたご
完全無料で一人前のエンジニアになれるプログラミングスクールあります
- プログラミング学習&サポートが無料!
- 誰もが知っている超優良企業への就職サポート付き!
- 学習言語:Java、PHP、HTML、CSSなど
話だけ聞いてみる