AI(ChatGPT)を使って半自動で月5万稼ぐ?
実際にやってみて結果・・ >>

【解説付き】hoverで背景画像が浮き出るCSSアニメーション4選

今回は【絶対使える!】hoverで背景がなめらかに動くCSS画像アニメーション4選をご紹介いたします。

シンプルかつ洗練されたデザイン。それぞれ違うエフェクトで滑らかな動き。実務で使える。ポートフォリオにも最適。コピペOK。HTML, CSSだけです。動きを見れば使いたくなること間違いなしです!

 

この記事の信頼性(ゆうけんブログの筆者はこんな人)

  • 現役Webデザイナーが執筆
  • 最高月収7桁超のフリーランス
  • 完全未経験から独学でWeb制作スキルを習得
  • Twitterフォロワー数2,000人超(→@twinzvlog_yk
  • Web制作のメンター経験多数
  • 認定ランサー(ランサーズ最高ランク)

 

コードの説明や実際の動きも詳しくまとめてみたので自由にお使いください。

こちらのデザイン・コードはすべて完全オリジナルなのでコピペ大歓迎です。

 

1. 右端から2つの背景が現れて文字が浮き出るCSS画像アニメーション

動きは下の画像のような感じになります

コードを見る
  <div class="container">
    <!-- 画像と背景・文字を複数配置 -->
    <div class="bg-pic">
      <div class="pic" style="background-image : url('https://cdn.pixabay.com/photo/2017/01/17/23/05/valetta-1988455_1280.jpg');">
        <div class="screen one"></div>
        <!-- 背景1段目 -->
        <div class="screen two"></div>
        <!-- 背景2段目 -->
        <div class="fonts">
          <h1>Malta's Building</h1>
          <p>this is a photo in malta <br><br><br>Have A Good Time</p>
        </div>
      </div>
    </div>
    <div class="bg-pic">
      <div class="pic" style="background-image : url('https://images.unsplash.com/photo-1551607117-21fa129a211d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1720&q=80');">
        <div class="screen one"></div>
        <!-- 背景1段目 -->
        <div class="screen two"></div>
        <!-- 背景2段目 -->
        <div class="screen three"></div>
        <div class="fonts">
          <h1>Malta's Building</h1>
          <p>this is a photo in malta <br><br><br>Have A Good Time</p>
        </div>
      </div>
    </div>
    <div class="bg-pic">
      <div class="pic" style="background-image : url('https://images.unsplash.com/photo-1519221739757-4df89b4d0efe?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80');">
        <div class="screen one"></div>
        <!-- 背景1段目 -->
        <div class="screen two"></div>
        <!-- 背景2段目 -->
        <div class="fonts">
          <h1>Malta's Building</h1>
          <p>this is a photo in malta <br><br><br>Have A Good Time</p>
        </div>
      </div>
    </div>
  </div>
/* 要素全体のサイズ・配置を指定 */
.container {
  width  : 100%;
  margin-top: 30px;
  display: flex;
  align-items:center;
  justify-content:center;
}
.container:after{
  clear   : both;
  display : table;
  content : '';
}
.bg-pic {
  width  : 440px;
  height : 300px;
  background-color: white;
  cursor : pointer;
}
.pic {
  /* 画像が美しく見えるようにエフェクト(明るさ・コントラスト・彩度)を調整 */
  filter: brightness(110%) contrast(105%) saturate(120%);
  width  : 440px;
  height : 300px;
  /* 相対的位置を指定 */
  position: relative;
  /* 枠に収まらない要素を隠す指定 */
  overflow: hidden;
  background-color: #102B46;
  background-size: cover;
  /* .pic全体に画像が表示されるように指定 */
}
/* ↓hover後に浮き出てくる文字と背景の設定 */
.fonts {
  text-align: center;
  background-color : #ffffff;
  width            : 440px;
  height           : 300px;
  padding          : 10px;
  top : 0;
  left: 0;
  color       : #888888;
  /* hover前のの文字の不透明度を指定 */
  opacity : 0;
  transition : opacity .8s;
  /* hover後カーソルを外した際に文字と背景が消える時間を指定 */
}
.fonts h1 {
  font-size: 28px;
  margin-top: 50px;
  margin-bottom : 40px;
}
.fonts p {
  font-size : 14px;
  font-style: italic;
  text-align: center;
  line-height : 20px;
}
.pic:hover .fonts {
  /* hover後の文字の不透明度を指定 */
  opacity : 1;
  transition : opacity .5s .3s;
  /* hover後に文字と背景が現れる時間を指定 */
}
.pic div {
  position : absolute;
  /* .pic div(hover後に現れる文字と背景)の位置を指定 */
}
.screen {
  /* スクリーン全体のスタイル設定 */
  width  : inherit;
  height : 150px;
  /* 背景の高さを指定 */
  background-color: #fff;
  left : 100%;
  /* 背景のアニメーションスタート位置指定 */
}
.screen.one {
  /* スクリーン1のスタイル設定 */
  top : 0;
  transition : all .3s;
  /* 背景が消える速度調整 */
}
.screen.two {
  /* スクリーン2のスタイル設定 */
  top : 150px;
  transition : all .6s;
  /* 背景が消える速度調整 */
}
.pic:hover .one {
  /* hover後のスクリーン1のスタイル設定 */
  left : 0;
  /* 背景が現れる始める位置指定 */
  transition : all .4s;
  /* 背景が現れる速度調整 */
}
.pic:hover .two {
  /* hover後のスクリーン2のスタイル設定 */
  left : 0;
  /* 背景が現れる始める位置指定 */
  transition : all 1s;
  /* 背景が現れる速度調整 */
}
ここがポイント!
  1. display : flexで画像を複数横並びに配置
  2. .picにoverflow: hiddenを設定することで収まらない要素を隠す
  3. screenに背景のアニメーションスタート位置を指定
  4. 画像の配置を固定するためpicクラスにposition:relative, picクラスのdivタグにposition:absoluteを指定
  5. 背景が右端から現れるように表示させるため2つのscreenクラスで異なる位置・速度を指定
  6. 各transitionプロパティをhover前・hover後に指定することで滑らかなアニメーションを実現

 

2. 右端から背景がスーッと表示されるCSS画像アニメーション

動きは下の画像のような感じになります

コードを見る
  <div class="container">
    <!-- 画像と背景・文字を複数配置 -->
    <div class="bg-pic">
      <div class="pic" style="background-image : url('https://cdn.pixabay.com/photo/2017/01/17/23/05/valetta-1988455_1280.jpg');">
        <div class="screen one"></div>
        <!-- 背景 -->
        <div class="fonts">
          <h1>Malta's Building</h1>
          <p>this is a photo in malta <br><br><br>Have A Good Time</p>
        </div>
      </div>
    </div>
    <div class="bg-pic">
      <div class="pic" style="background-image : url('https://images.unsplash.com/photo-1551607117-21fa129a211d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1720&q=80');">
        <div class="screen one"></div>
        <!-- 背景 -->
        <div class="fonts">
          <h1>Malta's Building</h1>
          <p>this is a photo in malta <br><br><br>Have A Good Time</p>
        </div>
      </div>
    </div>
    <div class="bg-pic">
      <div class="pic" style="background-image : url('https://images.unsplash.com/photo-1519221739757-4df89b4d0efe?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80');">
        <div class="screen one"></div>
        <!-- 背景 -->
        <div class="fonts">
          <h1>Malta's Building</h1>
          <p>this is a photo in malta <br><br><br>Have A Good Time</p>
        </div>
      </div>
    </div>
  </div>
/* 要素全体のサイズ・配置を指定 */
.container {
  width  : 100%;
  margin-top: 30px;
  display: flex;
  align-items:center;
  justify-content:center;
}
.container:after{
  clear   : both;
  display : table;
  content : '';
}
.bg-pic {
  width  : 440px;
  height : 300px;
  background-color: white;
  cursor : pointer;
}
.pic {
  /* 画像が美しく見えるようにエフェクト(明るさ・コントラスト・彩度)を調整 */
  filter: brightness(110%) contrast(105%) saturate(120%);
  width  : 440px;
  height : 300px;
  /* 相対的位置を指定 */
  position: relative;
  /* 枠に収まらない要素を隠す指定 */
  overflow: hidden;
  background-color: #102B46;
  background-size: cover;
  /* .pic全体に画像が表示されるように指定 */
}
/* ↓hover後に浮き出てくる文字と背景の設定 */
.fonts {
  text-align: center;
  background-color : #ffffff;
  width            : 440px;
  height           : 300px;
  padding          : 10px;
  top : 0;
  left: 0;
  color       : #888888;
  /* hover前のの文字の不透明度を指定 */
  opacity : 0;
  transition : opacity .8s;
  /* hover後カーソルを外した際に文字と背景が消える時間を指定 */
}
.fonts h1 {
  font-size: 28px;
  margin-top: 50px;
  margin-bottom : 40px;
}
.fonts p {
  font-size : 14px;
  font-style: italic;
  text-align: center;
  line-height : 20px;
}
.pic:hover .fonts {
  /* hover後の文字の不透明度を指定 */
  opacity : 1;
  transition : opacity .2s .2s;
  /* hover後に文字と背景が現れる時間を指定 */
}
.pic div {
  position : absolute;
  /* .pic div(hover後に現れる文字と背景)の位置を指定 */
}
.screen {
  /* スクリーン全体のスタイル設定 */
  width  : inherit;
  height : 300px;
  /* 背景の高さを指定 */
  background-color: #fff;
  left   : 100%;
  /* 背景のアニメーションスタート位置指定 */
}
.screen.one {
  /* スクリーン1のスタイル設定 */
  top : 0;
  transition : all .4s;
  /* 背景が消える速度調整 */
}
.pic:hover .one {
  /* hover後のスクリーン1のスタイル設定 */
  left : 0;
  /* 背景が現れる始める位置指定 */
  transition : all .4s;
  /* 背景が現れる速度調整 */
}
ここがポイント!
  1. display : flexで画像を複数横並びに配置
  2. .picにoverflow: hiddenを設定することで収まらない要素を隠す
  3. screenに背景のアニメーションスタート位置を指定
  4. 画像の配置を固定するためpicクラスにposition:relative, picクラスのdivタグにposition:absoluteを指定
  5. 背景が右端から現れるように表示させるためscreenクラスで位置・速度を指定
  6. 各transitionプロパティをhover前・hover後に指定することで滑らかなアニメーションを実現

 

3. 下から2つの背景がボンっボンと画像全体を覆うCSS画像アニメーション

動きは下の画像のような感じになります

コードを見る
  <div class="container">
    <!-- 画像と背景・文字を複数配置 -->
    <div class="bg-pic">
      <div class="pic" style="background-image : url('https://cdn.pixabay.com/photo/2017/01/17/23/05/valetta-1988455_1280.jpg');">
        <div class="screen one"></div>
        <!-- 背景1段目 -->
        <div class="screen two"></div>
        <!-- 背景2段目 -->
        <div class="fonts">
          <h1>Malta's Building</h1>
          <p>this is a photo in malta <br><br><br>Have A Good Time</p>
        </div>
      </div>
    </div>
    <div class="bg-pic">
      <div class="pic" style="background-image : url('https://images.unsplash.com/photo-1551607117-21fa129a211d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1720&q=80');">
        <div class="screen one"></div>
        <!-- 背景1段目 -->
        <div class="screen two"></div>
        <!-- 背景2段目 -->
        <div class="fonts">
          <h1>Malta's Building</h1>
          <p>this is a photo in malta <br><br><br>Have A Good Time</p>
        </div>
      </div>
    </div>
    <div class="bg-pic">
      <div class="pic" style="background-image : url('https://images.unsplash.com/photo-1519221739757-4df89b4d0efe?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80');">
        <div class="screen one"></div>
        <!-- 背景1段目 -->
        <div class="screen two"></div>
        <!-- 背景2段目 -->
        <div class="fonts">
          <h1>Malta's Building</h1>
          <p>this is a photo in malta <br><br><br>Have A Good Time</p>
        </div>
      </div>
    </div>
  </div>
/* 要素全体のサイズ・配置を指定 */
.container {
  width  : 100%;
  margin-top: 30px;
  display: flex;
  align-items:center;
  justify-content:center;
}
.container:after{
  clear   : both;
  display : table;
  content : '';
}
.bg-pic {
  width  : 440px;
  height : 300px;
  background-color: white;
  cursor : pointer;
}
.pic {
  /* 画像が美しく見えるようにエフェクト(明るさ・コントラスト・彩度)を調整 */
  filter: brightness(110%) contrast(105%) saturate(120%);
  width  : 440px;
  height : 300px;
  /* 相対的位置を指定 */
  position: relative;
  /* 枠に収まらない要素を隠す指定 */
  overflow: hidden;
  background-color: #102B46;
  background-size: cover;
  /* .pic全体に画像が表示されるように指定 */
}
/* ↓hover後に浮き出てくる文字と背景の設定 */
.fonts {
  text-align: center;
  background-color : #ffffff;
  width            : 440px;
  height           : 300px;
  padding          : 10px;
  top : 0;
  left: 0;
  color       : #888888;
  /* hover前のの文字の不透明度を指定 */
  opacity : 0;
  transition : opacity .8s;
  /* hover後カーソルを外した際に文字と背景が消える時間を指定 */
}
.fonts h1 {
  font-size: 28px;
  margin-top: 50px;
  margin-bottom : 40px;
}
.fonts p {
  font-size : 14px;
  font-style: italic;
  text-align: center;
  line-height : 20px;
}
.pic:hover .fonts {
  /* hover後の文字の不透明度を指定 */
  opacity : 1;
  transition : opacity .2s .3s;
  /* hover後に文字と背景が現れる時間を指定 */
}
.pic div {
  position : absolute;
  /* .pic div(hover後に現れる文字と背景)の位置を指定 */
}
.screen {
  /* スクリーン全体のスタイル設定 */
  width  : inherit;
  height : 150px;
  /* 背景の高さを指定 */
  background-color: #fff;
  transition : all .3s;
  bottom : -150px;
  /* 背景のアニメーションスタート位置指定 */
}
.screen.one {
  transition : all .1s;
  /* 背景が消える速度調整 */
}
.screen.two {
  transition : all .1s .1s;
  /* 背景が消える速度調整 */
}
.pic:hover .one {
  bottom : 150px;
  /* hover後の背景の位置指定 */
  transition : all .2s;
  /* 背景が現れる速度調整 */
}
.pic:hover .two {
  bottom : 0px;
  /* hover後の背景の位置指定 */
  transition : all .2s .2s ;
  /* 背景が現れる速度調整 */
}
ここがポイント!
  1. display : flexで画像を複数横並びに配置
  2. .picにoverflow: hiddenを設定することで収まらない要素を隠す
  3. screenに背景のアニメーションスタート位置を指定
  4. 画像の配置を固定するためpicクラスにposition:relative, picクラスのdivタグにposition:absoluteを指定
  5. ブロックが下から飛んでくるように背景を表示させるため2つのscreenクラスで異なる位置・速度を指定
  6. 各transitionプロパティをhover前・hover後に指定することで滑らかなアニメーションを実現

 

4. 下から背景がスーッと現れるCSS画像アニメーション

動きは下の画像のような感じになります

コードを見る
  <div class="container">
    <!-- 画像と背景・文字を複数配置 -->
    <div class="bg-pic">
      <div class="pic" style="background-image : url('https://cdn.pixabay.com/photo/2017/01/17/23/05/valetta-1988455_1280.jpg');">
        <div class="screen one"></div>
        <!-- 背景 -->
        <div class="fonts">
          <h1>Malta's Building</h1>
          <p>this is a photo in malta <br><br><br>Have A Good Time</p>
        </div>
      </div>
    </div>
    <div class="bg-pic">
      <div class="pic" style="background-image : url('https://images.unsplash.com/photo-1551607117-21fa129a211d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1720&q=80');">
        <div class="screen one"></div>
        <!-- 背景 -->
        <div class="fonts">
          <h1>Malta's Building</h1>
          <p>this is a photo in malta <br><br><br>Have A Good Time</p>
        </div>
      </div>
    </div>
    <div class="bg-pic">
      <div class="pic" style="background-image : url('https://images.unsplash.com/photo-1519221739757-4df89b4d0efe?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1650&q=80');">
        <div class="screen one"></div>
        <!-- 背景 -->
        <div class="fonts">
          <h1>Malta's Building</h1>
          <p>this is a photo in malta <br><br><br>Have A Good Time</p>
        </div>
      </div>
    </div>
  </div>
/* 要素全体のサイズ・配置を指定 */
.container {
  width  : 100%;
  margin-top: 30px;
  display: flex;
  align-items:center;
  justify-content:center;
}
.container:after{
  clear   : both;
  display : table;
  content : '';
}
.bg-pic {
  width  : 440px;
  height : 300px;
  background-color: white;
  cursor : pointer;
}
.pic {
  /* 画像が美しく見えるようにエフェクト(明るさ・コントラスト・彩度)を調整 */
  filter: brightness(110%) contrast(105%) saturate(120%);
  width  : 440px;
  height : 300px;
  /* 相対的位置を指定 */
  position: relative;
  /* 枠に収まらない要素を隠す指定 */
  overflow: hidden;
  background-color: #102B46;
  background-size: cover;
  /* .pic全体に画像が表示されるように指定 */
}
/* ↓hover後に浮き出てくる文字と背景の設定 */
.fonts {
  text-align: center;
  background-color : #ffffff;
  width            : 440px;
  height           : 300px;
  padding          : 10px;
  top : 0;
  left: 0;
  color       : #888888;
  /* hover前のの文字の不透明度を指定 */
  opacity : 0;
  transition : opacity .8s;
  /* hover後カーソルを外した際に文字と背景が消える時間を指定 */
}
.fonts h1 {
  font-size: 28px;
  margin-top: 50px;
  margin-bottom : 40px;
}
.fonts p {
  font-size : 14px;
  font-style: italic;
  text-align: center;
  line-height : 20px;
}
.pic:hover .fonts {
  /* hover後の文字の不透明度を指定 */
  opacity : 1;
  transition : opacity .7s .3s;
  /* hover後に文字と背景が現れる時間を指定 */
}
.pic div {
  position : absolute;
  /* .pic div(hover後に現れる文字と背景)の位置を指定 */
}
.screen {
  /* スクリーン全体のスタイル設定 */
  width  : inherit;
  height : 300px;
  /* 背景の高さを指定 */
  background-color: #fff;
  transition : all .3s;
  bottom : -300px;
  /* 背景のアニメーションスタート位置指定 */
}
.screen.one {
  transition : all .2s;
  /* 背景が消える速度調整 */
}
.pic:hover .one {
  bottom : 0px;
  /* hover後の背景の位置指定 */
  transition : all .4s;
  /* 背景が現れる速度調整 */
}
ここがポイント!
  1. display : flexで画像を複数横並びに配置
  2. .picにoverflow: hiddenを設定することで収まらない要素を隠す
  3. screenに背景のアニメーションスタート位置を指定
  4. 画像の配置を固定するためpicクラスにposition:relative, picクラスのdivタグにposition:absoluteを指定
  5. 背景が下から閉まるように表示させるためscreenクラスで位置・速度を指定
  6. 各transitionプロパティをhover前・hover後に指定することで滑らかなアニメーションを実現

 

『絶対にリモートワーク!』という方におすすめの求人サイトをご紹介!

クラウドテック
Web制作案件の数
(5.0)
案件の単価
(4.0)
使いやすさ
(5.0)
案件獲得効率
(5.0)
初心者向け
(5.0)
オススメ度
(5.0)
総合評価
(5.0)
この講座のポイント

対象
Webデザイナー・エンジニア・グラフィックデザイナー・PM・マーケター・ライター

 

公式サイト
クラウドテック公式ページ

特徴

  • クラウドソーシング企業大手のクラウドワークスが運営する求人サイト
  • 実務未経験者でもOK
  • 登録社数14万社
  • フリーランス・個人事業主向け案件がケタ違いに多い
  • 報酬額や勤務地・職種など希望が通りやすい
  • Web制作・コーディングの高単価案件が多い
  • リモートワーク案件数は業界トップクラス
  • 最短3日で案件を獲得できる

 

現役Webデザイナーの筆者イチオシの求人サイト!フリーランス向けWeb制作案件なら確実に業界トップクラス。営業かけずに案件に困らなくなる一番の近道です。

ふたご

 

無料で登録してみる >>

 

 

まとめ

HTMLとCSSを使うと今回紹介したようなことも簡単にできてしまうんです。

 

『CSSアニメーションやエフェクトだけではなくWebサイトをゼロから作って稼いでいきたい』

『3ヶ月くらいで最低でも月10万円は稼ぎたい』

『営業とかやったことないけどWeb制作だけで稼いでいきたい』

 

こんな方のためにWeb制作で月80万超稼ぐ筆者が自身の経験を踏まえて【失敗しない】Webデザイナー(Web制作)独学ロードマップを執筆しました。

 

少額の投資で3ヶ月後には月10〜30万稼げるよう設計してあります。
(学習教材やAdobeなど最低限のコストはかかります)

 

ロードマップの構成
  1. Web制作に特化した『確実に身に付く』学習方法
  2. Web制作会社が喰いつく理想的なポートフォリオの作成手順
  3. 返信率10%以上!Web制作会社へのメール営業

 

有料公開も考えましたが「Webデザイナー(Web制作)はまだまだ稼げることを証明したい!」という思いが強く、期間限定で無料公開をすることにしました。

 

2021年半ばまでは無料公開する予定ではありますが前倒しすることもあり得ますのでご興味ある方はお早めにどうぞ!