ホームページ > ウェブフロントエンド > CSSチュートリアル > SVG を使用して Web ページ上の手書きテキストをアニメーション化する方法

SVG を使用して Web ページ上の手書きテキストをアニメーション化する方法

Patricia Arquette
リリース: 2024-12-02 17:12:12
オリジナル
585 人が閲覧しました

How to Animate Handwritten Text on a Web Page Using SVG?

SVG を使用して Web ページ上の手書きテキストをアニメーション化する方法?

問題:

次のような例で見られる手書きテキストのアニメーション効果を模倣します。 [これ](http://codepen.io/se7ensky/pen/waoMyx) および [これ](https://codepen.io/munkholm/pen/EaZJQE)。ただし、テキスト全体ではなくストロークのみをアニメーション化できます。

コード:

.test {
  width: 300px
  /*   margin:0 auto; */
}

.l1 {
  animation: dash 15s 1;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation-fill-mode: forwards;
  /*fill: none;*/
}

.l2 {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: dash 20s linear forwards;
  -webkit-animation-delay: 1s;
  /* Chrome, Safari, Opera */
  animation-delay: 1s;
}

.l3 {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: dash 25s linear forwards;
  -webkit-animation-delay: 2.5s;
  /* Chrome, Safari, Opera */
  animation-delay: 2.5s;
}

.l4 {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: dash 25s linear forwards;
  -webkit-animation-delay: 4.5s;
  /* Chrome, Safari, Opera */
  animation-delay: 4.5s;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
ログイン後にコピー
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 19.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<svg class="test" version="1.1">
ログイン後にコピー

以上がSVG を使用して Web ページ上の手書きテキストをアニメーション化する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート