我想我的手在SVG上,我做了這個 link。現在我想知道如何在背景中從中心到外部填充樹。目前,它只是消失在 這裏是動畫代碼:。從中心到外部填充樹
.st0 {
fill:#22a8d5;
fill-opacity: 0;
animation-timing-function: ease-in-out;
animation-fill-mode: forwards;
animation-iteration: 1;
animation-name: fillup;
animation-duration: 4s;
animation-delay: 4s;
}
@-webkit-keyframes fillup {
from { fill-opacity: 0; }
to { fill-opacity: 1; }
}
我都試過,但我只是不能得到它的工作,這在任何幻燈片或淡出
使用矩形創建剪輯路徑,剪切十字,隨着時間增長矩形。 –