Web制作 × AI

【jQuery】テキストを一文字ずつ下から生えてくるようにフェードインさせる方法

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

今回はWeb制作におけるCSSアニメーションの中でテキストアニメーションに関する内容です。テキストが一文字ずつ下から生えてくるようにフェードインさせるテクニックを紹介します。
CSSによってテキストを1文字ずつアニメーションさせます。

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

見出しのテキストなどに使用すると効果的です。スクロールして要素が見えたらアニメーションを実行させるのも効果的です。

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

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

実装所要時間は10分程度

CSS,JavaScriptの記述内容

.wrap {
  width: 768px;
  margin: 0 auto;
}

.text {
  margin: 200px 0 0;
  text-align: center;
  font-size: 50px;
  opacity: 0;
}

.text p {
  display: inline-block;
  transform-origin: center center;
  transform: translate3d(0, 40px, 0);
}

.text p span {
  transform-origin: center center;
  transform: scale3d(0.1, 0.1, 1);
  opacity: 0;
}
.text p:nth-child(1) {
  transition: transform 0.8s ease 0.1s;
}
.text p:nth-child(1) span {
  transition: transform 0.8s ease 0.1s,opacity 0.8s ease 0.1s;
}
.text p:nth-child(2) {
  transition: transform 0.8s ease 0.2s;
}
.text p:nth-child(2) span {
  transition: transform 0.8s ease 0.2s,opacity 0.8s ease 0.2s;
}
.text p:nth-child(3) {
  transition: transform 0.8s ease 0.3s;
}
.text p:nth-child(3) span {
  transition: transform 0.8s ease 0.3s,opacity 0.8s ease 0.3s;
}
.text p:nth-child(4) {
  transition: transform 0.8s ease 0.4s;
}
.text p:nth-child(4) span {
  transition: transform 0.8s ease 0.4s,opacity 0.8s ease 0.4s;
}
.text p:nth-child(5) {
  transition: transform 0.8s ease 0.5s;
}
.text p:nth-child(5) span {
  transition: transform 0.8s ease 0.5s,opacity 0.8s ease 0.5s;
}
.text p:nth-child(6) {
  transition: transform 0.8s ease 0.6s;
}
.text p:nth-child(6) span {
  transition: transform 0.8s ease 0.6s,opacity 0.8s ease 0.6s;
}
.text p:nth-child(7) {
  transition: transform 0.8s ease 0.7s;
}
.text p:nth-child(7) span {
  transition: transform 0.8s ease 0.7s,opacity 0.8s ease 0.7s;
}
.text p:nth-child(8) {
  transition: transform 0.8s ease 0.8s;
}
.text p:nth-child(8) span {
  transition: transform 0.8s ease 0.8s,opacity 0.8s ease 0.8s;
}
.text p:nth-child(9) {
  transition: transform 0.8s ease 0.9s;
}
.text p:nth-child(9) span {
  transition: transform 0.8s ease 0.9s,opacity 0.8s ease 0.9s;
}
.text p:nth-child(10) {
  transition: transform 0.8s ease 1.0s;
}
.text p:nth-child(10) span {
  transition: transform 0.8s ease 1s,opacity 0.8s ease 1s;
}
.text p:nth-child(11) {
  transition: transform 0.8s ease 1.1s;
}
.text p:nth-child(11) span {
  transition: transform 0.8s ease 1.1s,opacity 0.8s ease 1.1s;
}

.text.active {
  opacity: 1;
}

.text.active p {
  transform: translate3d(0, 0, 0);
}

.text.active span {
  display: block;
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

@media screen and (max-width:640px){
  .wrap {
    width: 100%;
  }
  .text-move {
    font-size: 30px;
  }
}

実装のポイント

現在制作中

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

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


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

片山

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

著者画像

スポンサーリンク

「【jQuery】テキストを一文字ずつ下から生えてくるようにフェードインさせる方法」への2件のフィードバック

コメントは受け付けていません。