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

背景がrotate(XYZ)で回転するCSS画像アニメーション3選【徹底解説】

今回は背景がrotate(XYZ)で回転するCSS画像アニメーション3選【徹底解説】をご紹介。シンプルかつ洗練されたデザイン。transformプロパティ(rotateXYZ)で画像が動く。filterで美しいエフェクト。Web制作で使える。コピペOK。HTML, CSSだけ

まずは動きを確認してみてください(これがコピペOKなのかと驚くはず)

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

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

 

1. 【背景平面回転】rotateZで失敗しない画像アニメーション

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

 

コードを見る
  <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>
/* 要素全体のサイズ・配置を指定 */
.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: inherit;
  /* 背景の高さを指定 */
  background-color: #fff;
  transition : all .6s;
}
.screen.one {
  /* 回転の角度を指定 */
  transform: rotateZ(0deg);
  transition : all .8s;
  /* 背景が消える速度調整 */
  left   : 100%;
  bottom : 100%;
  /* 背景のアニメーションスタート位置指定 */
}
.screen.two {
    /* 回転の角度を指定 */
  transform: rotateZ(0deg);
  transition : all .8s;
  /* 背景が消える速度調整 */
  right   : 100%;
  top : 100%;
  /* 背景のアニメーションスタート位置指定 */
}
.pic:hover .one {
    /* 回転の角度を指定 */
  transform: rotateZ(180deg);
  left   : 0;
  bottom : 0;
  /* hover後の背景の位置指定 */
  transition : all 1s;
  /* 背景が現れる速度調整 */
}
.pic:hover .two {
    /* 回転の角度を指定 */
  transform: rotateZ(180deg);
  right  : 0;
  top : 0;
  /* hover後の背景の位置指定 */
  transition : all 1s;
  /* 背景が現れる速度調整 */
}
POINT
  1. background-imageの中にscreen-one/screen-twoクラスとfontsクラスを置く
  2. hover時にscreen-oneとscreen-twoが閉まるように互いにleft/bottomを100%に指定
  3. transform:rotateで回転角度を指定して背景が回転しながら閉じるアニメーションを実現(transformの使い方については【transform完全網羅】hoverで動き出す!transformを網羅できるCSSボタンアニメーション16選)
  4. transitionプロパティを指定することで滑らかなアニメーションを実現

2. 【背景縦回転】rotateXで失敗しない画像アニメーション

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

 

コードを見る
  <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>
/* 要素全体のサイズ・配置を指定 */
.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: inherit;
  /* 背景の高さを指定 */
  background-color: #fff;
  transition : all .3s;
}
.screen.one {
    /* 回転の角度を指定 */
  transform: rotateX(0deg);
  transition : all .3s;
  /* 背景が消える速度調整 */
  left   : 100%;
  bottom : 100%;
  /* 背景のアニメーションスタート位置指定 */
}
.screen.two {
    /* 回転の角度を指定 */
  transform: rotateX(0deg);
  transition : all .3s;
  /* 背景が消える速度調整 */
  right   : 100%;
  top : 100%;
  /* 背景のアニメーションスタート位置指定 */
}
.pic:hover .one {
    /* 回転の角度を指定 */
  transform: rotateX(180deg);
  left   : 0;
  bottom : 0;
  /* hover後の背景の位置指定 */
  transition : all .5s;
  /* 背景が現れる速度調整 */
}
.pic:hover .two {
    /* 回転の角度を指定 */
  transform: rotateX(180deg);
  right  : 0;
  top : 0;
  /* hover後の背景の位置指定 */
  transition : all .5s;
  /* 背景が現れる速度調整 */
}
POINT
  1. background-imageの中にscreen-one/screen-twoクラスとfontsクラスを置く
  2. hover時にscreen-oneとscreen-twoが閉まるように互いにleft/bottomを100%に指定
  3. transform:rotateで回転角度を指定して背景が回転しながら閉じるアニメーションを実現(transformの使い方については【transform完全網羅】hoverで動き出す!transformを網羅できるCSSボタンアニメーション16選)
  4. transitionプロパティを指定することで滑らかなアニメーションを実現

 

3. 【背景横回転】rotateYで失敗しない画像アニメーション

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

 

コードを見る
  <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>
/* 要素全体のサイズ・配置を指定 */
.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: inherit;
  /* 背景の高さを指定 */
  background-color: #fff;
  transition : all .3s;
}
.screen.one {
    /* 回転の角度を指定 */
  transform: rotateY(0deg);
  transition : all .3s .3s;
  /* 背景が消える速度調整 */
  left   : 100%;
  bottom : 100%;
  /* 背景のアニメーションスタート位置指定 */
}
.screen.two {
    /* 回転の角度を指定 */
  transform: rotateY(0deg);
  transition : all .3s .3s;
  /* 背景が消える速度調整 */
  right   : 100%;
  top : 100%;
  /* 背景のアニメーションスタート位置指定 */
}
.pic:hover .one {
    /* 回転の角度を指定 */
  transform: rotateY(180deg);
  left   : 0;
  bottom : 0;
  /* hover後の背景の位置指定 */
  transition : all .6s;
  /* 背景が現れる速度調整 */
}
.pic:hover .two {
    /* 回転の角度を指定 */
  transform: rotateY(180deg);
  right  : 0;
  top : 0;
  /* hover後の背景の位置指定 */
  transition : all .6s;
  /* 背景が現れる速度調整 */
}
POINT
  1. background-imageの中にscreen-one/screen-twoクラスとfontsクラスを置く
  2. hover時にscreen-oneとscreen-twoが閉まるように互いにleft/bottomを100%に指定
  3. transform:rotateで回転角度を指定して背景が回転しながら閉じるアニメーションを実現(transformの使い方については【transform完全網羅】hoverで動き出す!transformを網羅できるCSSボタンアニメーション16選)
  4. transitionプロパティを指定することで滑らかなアニメーションを実現

【初心者向け】失敗しないプログラミングTIPS

そもそもWebデザインの基礎がわからない。。
そんなあなたには『Udemy』

ふたご


でもなあ、独学だと心配だしプログラミングスクールで学びたい!。かといってお金はかけたくないし。。
そんなあなたにはProEngineer

ふたご

完全無料で一人前のエンジニアになれるプログラミングスクール【ProEngineer】
  1. プログラミング学習&サポートが無料!
  2. 誰もが知っている超優良企業への就職サポート付き!
  3. 学習言語:Java、PHP、HTML、CSSなど

 

   話だけ聞いてみる