Web制作 × AI

【CSS】画像の上に重ねたカラーを複数に分割した状態からスライドアニメーションで画像を表示する方法

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

今回はWeb制作におけるCSSアニメーションの中でカーテンアニメーションに関する内容です。画像の上に重ねたカラーを複数に分割した状態からスライドアニメーションで画像を表示する方法を紹介します。

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

スクロールをして画像が見えたらアニメーションを実行させるのが一般的な使い方となります。一般的なカーテンアニメーションに比べて細かく表示するので、画像に対する期待感をもたせることができます。

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

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

実装所要時間は10分程度

CSS,JavaScriptの記述内容

.block {
  position: relative;
  display: block;
  width: 700px;
  overflow: hidden;
  line-height: 0;
  margin: 50px auto 0;
}

.block img {
  width: 100%;
}

.curtain {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 101%;
}

.active .curtain {
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(.935,.015,.335,.92) 0s,background 0s linear 0.35s;
  transform: rotateY(0deg);
}

.curtain span {
  display: block;
  width: 20%;
  height: 20.1%;
  line-height: 0;
  background: #8c6853;
}

.active .curtain span {
  transition: transform .5s cubic-bezier(.935,.015,.335,.92);
  transform: rotateY(90deg);
}

.active .curtain span:first-child {
  transition-delay: 0.6s;
  transform-origin: left;
}

.active .curtain span:nth-child(2),
.active .curtain span:nth-child(3) {
  transition-delay: 0.6s;
  transform-origin: right;
}

.active .curtain span:nth-child(4) {
  transition-delay: 0.6s;
  transform-origin: left;
}

.active .curtain span:nth-child(5),
.active .curtain span:nth-child(6) {
  transition-delay: 0.6s;
  transform-origin: right;
}

.active .curtain span:nth-child(7),
.active .curtain span:nth-child(8) {
  transition-delay: 0.6s;
  transform-origin: left;
}

.active .curtain span:nth-child(9),
.active .curtain span:nth-child(10) {
  transition-delay: 0.6s;
  transform-origin: right;
}

.active .curtain span:nth-child(11) {
  transition-delay: 0.6s;
  transform-origin: left;
}

.active .curtain span:nth-child(12),
.active .curtain span:nth-child(13) {
  transition-delay: 0.6s;
  transform-origin: right;
}

.active .curtain span:nth-child(14),
.active .curtain span:nth-child(15) {
  transition-delay: 0.6s;
  transform-origin: left;
}

.active .curtain span:nth-child(16),
.active .curtain span:nth-child(17) {
  transition-delay: 0.6s;
  transform-origin: right;
}

.active .curtain span:nth-child(18) {
  transition-delay: 0.6s;
  transform-origin: left;
}

.active .curtain span:nth-child(19),
.active .curtain span:nth-child(20) {
  transition-delay: 0.6s;
  transform-origin: right;
}

.active .curtain span:nth-child(21),
.active .curtain span:nth-child(22) {
  transition-delay: 0.6s;
  transform-origin: left;
}

.active .curtain span:nth-child(23),
.active .curtain span:nth-child(24) {
  transition-delay: 0.6s;
  transform-origin: right;
}

.active .curtain span:nth-child(25) {
  transition-delay: 0.6s;
  transform-origin: left;
}

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

実装のポイント

現在制作中

PR
[商品価格に関しましては、リンクが作成された時点と現時点で情報が変更されている場合がございます。]

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


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

片山

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

著者画像

スポンサーリンク