Web制作 × AI

【CSS】四角形のカラー4つを別方向にカーテンアニメーションさせてから正方形のエリアを表示する方法

コーディングテクニックの実装内容

今回はWeb制作におけるCSSアニメーションに関する内容です。四角形のカラー4つを別方向にカーテンアニメーションさせてから正方形のエリアを表示する方法を紹介します。

コーディングテクニックの使いどころ

メインビジュアルにテキスト(見出し、タイトル)を表示させる時などに適用すると効果的です。

実装難易度・必要なスキル

コーディングとjQueryの基礎的な知識があれば実務未経験のコーダー、マークアップエンジニア、Webデザイナー、エンジニア、副業の初心者など誰でも実装可能です。

実装所要時間は10分程度

CSS,JavaScriptの記述内容

.block {
  position: relative;
  height: 500px;
  margin: 70px auto 0;
}

.box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
}

.square {
  position: absolute;
  width: 51%;
  height: 51%;
  background-color: #2f2f38;
}

.square.top {
  top: 0;
  right: 50%;
  width: 0;
  transition: width 0.7s ease-in-out;
}

.square.bottom {
  bottom: 0;
  left: 50%;
  width: 0;
  transition: width 0.7s ease-in-out;
}

.square.left {
  top: 50%;
  left: 0;
  height: 0;
  transition: height 0.7s ease-in-out;
}

.square.right {
  right: 0;
  bottom: 50%;
  height: 0;
  transition: height 0.7s ease-in-out;
}

.text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: #fff;
  transition: 0.8s cubic-bezier(0.82, 0.01, 0.28, 0.99) 0.5s;
  opacity: 0;
}

.active .square.top {
  width: 50%;
}
.active .square.bottom {
  width: 50%;
}
.active .square.left {
  height: 50%;
}
.active .square.right {
  height: 50%;
}

.active .text {
  opacity: 1;
}

@media screen and (max-width:640px){
  .block {
    height: 300px;
  }

  .box {
    width: 300px;
    height: 300px;
  }

  .active .text {
    font-size: 20px;
  }
}

実装のポイント

  • 1) アニメーションはtransitionのみで実装
PR
[商品価格に関しましては、リンクが作成された時点と現時点で情報が変更されている場合がございます。]

ChatGPT 120%活用術 [ ChatGPTビジネス研究会 ]
価格:1,390円(税込、送料無料) (2023/5/23時点)


この記事を書いた人(著者情報)

片山

カタチップ編集長。昭和生まれの30代でWeb業界歴は10年以上。現在はカタチップを運用しつつ事業会社でWEBメディアサイトのWebディレクター兼マークアップエンジニアを担当。最近はSNSの運用にも業務範囲を拡大中です。

著者画像

スポンサーリンク