首頁 > web前端 > css教學 > 如何使用 SVG 在網頁上製作手寫文字動畫?

如何使用 SVG 在網頁上製作手寫文字動畫?

Patricia Arquette
發布: 2024-12-02 17:12:12
原創
578 人瀏覽過

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

如何使用 SVG 在網頁上製作手寫文字動畫?

問題:

我一直在嘗試模仿範例中看到的手寫文字動畫效果[這個](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 在網頁上製作手寫文字動畫?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板