2016-06-12 79 views
1

我正在試圖創建一個我創建並保存爲SVG的文本。到目前爲止,我只能對中風進行動畫製作,但這不是我想要的。 這裏是鏈接到我所需要的例子:如何使用SVG在網頁上設置手寫文字的動畫效果?

[http://codepen.io/se7ensky/pen/waoMyx][1] 

[https://codepen.io/munkholm/pen/EaZJQE][1] 

我會很感激,如果有人可以解釋我怎麼能實現這一點。

這是我到目前爲止有:

[https://codepen.io/sora1/pen/LZNZva][1] 
+0

[我的手書面方式動畫] [1]沒有聯繫 –

+0

請確認鏈接 –

回答

9

Se7ensky動畫如何工作的原因是它使用標準的短劃線動畫技術,但剪輯動畫筆劃的輪廓代表手繪外觀的標誌。

所以標準短跑動畫技術的工作原理如下。你把標準線:

<svg> 
 
    <path d="M 10,75 L 290,75" stroke="red" stroke-width="50"/> 
 
</svg>

然後你一個虛線樣式添加到它和動畫它的位置(stroke-dashoffset)。

.pen { 
 
    stroke-dasharray: 280 280; 
 
    stroke-dashoffset: 280; 
 
    animation-duration: 2s; 
 
    animation-name: draw; 
 
    animation-iteration-count: infinite; 
 
    animation-direction: alternate; 
 
    animation-timing-function: linear; 
 
} 
 

 
@keyframes draw { 
 
    from { 
 
    stroke-dashoffset: 280; 
 
    } 
 

 
    to { 
 
    stroke-dashoffset: 0; 
 
    } 
 
}
<svg> 
 
    <path class="pen" d="M 10,75 L 290,75" stroke="red" stroke-width="50"/> 
 
</svg>

最後得到Se7ensky例如花哨的可變衝程寬度,你剪輯您的標誌的輪廓該行。

讓我們假裝下面這個簡單的路徑代表您的標誌:

<svg> 
 
    <path stroke="black" stroke-width="1" fill="lightgrey" 
 
     d="M 40,50 
 
      C 110,55 195,60, 265,55 
 
      C 290,55 290,85 265,85 
 
      C 195,85 110,85 40,100 
 
      C 0,100 0,50 40,50 Z"/> 
 
</svg>

我們把它轉換成一個clipPath元素,並用它來我們的動畫中風修剪到我們的標誌的形狀:

.pen { 
 
    stroke-dasharray: 280 280; 
 
    stroke-dashoffset: 280; 
 
    animation-duration: 2s; 
 
    animation-name: draw; 
 
    animation-iteration-count: infinite; 
 
    animation-direction: alternate; 
 
    animation-timing-function: linear; 
 
} 
 

 
@keyframes draw { 
 
    from { 
 
    stroke-dashoffset: 280; 
 
    } 
 

 
    to { 
 
    stroke-dashoffset: 0; 
 
    } 
 
}
<svg> 
 
    <clipPath id="logo"> 
 
    <path d="M 40,50 
 
      C 110,55 195,60, 265,55 
 
      C 290,55 290,85 265,85 
 
      C 195,85 110,85 40,100 
 
      C 0,100 0,50 40,50 Z"/> 
 
    </clipPath> 
 
    
 
    <path class="pen" d="M 10,75 L 290,75" stroke="red" stroke-width="50" clip-path="url(#logo)"/> 
 
</svg>

因此,要複製他們的示例,您需要向SVG添加一個連續路徑(或路徑,如果您需要的話),該路徑代表筆在您的徽標中書寫字母時所需的路徑。

然後使用dashoffset技術爲該路徑製作動畫,同時將其用原始徽標剪裁。


更新

這裏有一個更現實的字母形狀的最終演示:

.pen { 
 
    fill: none; 
 
    stroke: red; 
 
    stroke-width: 18; 
 
    stroke-linecap: round; 
 
    clip-path: url(#logo); 
 

 
    stroke-dasharray: 206 206; 
 
    stroke-dashoffset: 206; 
 
    animation-duration: 2s; 
 
    animation-name: draw; 
 
    animation-iteration-count: infinite; 
 
    animation-direction: alternate; 
 
    animation-timing-function: linear; 
 
} 
 

 
@keyframes draw { 
 
    from { 
 
    stroke-dashoffset: 206; 
 
    } 
 

 
    to { 
 
    stroke-dashoffset: 0; 
 
    } 
 
}
<svg> 
 
    <defs> 
 
    <clipPath id="logo"> 
 
     <path d="m85.77 49.77c-10.59 8.017-27.38 21.95-41.58 21.95-6.396 0-12.99-2.481-12.39-9.735l0.3998-4.199c38.38-12.03 48.17-26.15 48.17-35.5 0-7.635-7.995-9.162-14.39-9.162-25.98-0.1909-54.97 25.39-54.17 50.39 0.3998 12.6 7.196 25.01 21.79 25.01 19.79 0 41.78-17.94 53.97-31.5zm-52.37-1.336c5.397-12.6 16.99-21.76 26.98-24.24 1.399-0.3818 2.399 0.7635 2.399 2.1 0.1999 3.245-11.79 16.42-29.38 22.14z"/> 
 
    </clipPath> 
 
    </defs> 
 
    
 
    <path d="m39.02 51.1c5.361-1.771 10.04-4.182 15.98-7.857 6.019-3.933 9.841-7.728 12.77-10.71 1.403-1.369 12.03-15.97-7.857-13.93-9.824 1.01-19.62 8.3-26.16 14.91-6.538 6.61-10.42 14.51-11.96 22.23-2.559 12.76 1.807 26.19 21.07 23.48 13.96-1.965 32.59-14.55 43.66-25.54" class="pen"/> 
 
</svg>

+0

非常感謝你的答案。我花了一段時間才明白,但我終於明白了。 –

1

的例子看起來像SVG路徑和延遲動畫的結合。

本博客文章由CSS-技巧說明它非常好(注意,SVG必須有招這個工作): https://css-tricks.com/svg-line-animation-works/

這裏有中風dashoffset指導(在本例中使用)可能是有用的: https://css-tricks.com/almanac/properties/s/stroke-dashoffset/

+0

感謝您的回答,我明白stroke-dashoffset如何工作。我的問題是從文本創建一個svg,有一個筆畫,但沒有任何填充。所以我只能動畫中風。我用例子更新了我的鏈接。希望它能讓我更清楚地理解我正在努力實現的目標。 –

+0

你需要編輯實際的svg只能是筆畫......我看你用Illustrator生成圖像,所以嘗試編輯svg到illustrator上。這可能意味着編輯實際的形狀,如果你需要更多的幫助,也許嘗試問這裏http://graphicdesign.stackexchange.com – Diego

相關問題