how to animate an <path>? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

how to animate an <path>?

svg path

13th Sep 2017, 6:57 AM
caida dodosy
caida dodosy - avatar
6 Answers
13th Sep 2017, 7:42 AM
Ranjan Bagri
Ranjan Bagri - avatar
+ 3
thanks
13th Sep 2017, 7:12 AM
caida dodosy
caida dodosy - avatar
+ 3
please can you help me to animate this code with rotate or scale? <html> <head> </head> <body bgcolor="red"> <svg width="500" height="500"> <path d="M100 100 L105 95 L150 100 L155 145 L150 150 L100 150 Z" stroke="#FFFFFF" fill="Blue"></path> <path d="M105 95 L155 95 L155 145 L105 145 Z" stroke="#FFFFFF" fill="Blue"></path> </body> </html>
13th Sep 2017, 7:19 AM
caida dodosy
caida dodosy - avatar
+ 2
path{ stroke-dasharray:10; stroke-dashoffset:10; fill:none; stroke:#000; } path:nth-child(1){animation:draw1 4s linear infinite} path:nth-child(2){animation:draw2 4s linear infinite} path:nth-child(3){animation:draw3 4s linear infinite} path:nth-child(4){animation:draw4 4s linear infinite} @keyframes draw1{ 20%,100% {stroke-dashoffset:0; } } @keyframes draw2{ 20% {stroke-dashoffset:10;} 40%,100% {stroke-dashoffset:0; } } @keyframes draw3{ 40% {stroke-dashoffset:10;} 60%,100% {stroke-dashoffset:0; } } @keyframes draw4{ 60% {stroke-dashoffset:10;} 80%,100% {stroke-dashoffset:0; } } or <svg width="220px" height="100px" viewBox="0 0 10 11"> <path d="M0,1 h10" /> <path d="M0,4 h10" /> <path d="M0,7 h10" /> <path d="M0,10 h10" /> </svg>
13th Sep 2017, 7:08 AM
MsJ
MsJ - avatar
13th Sep 2017, 7:29 AM
Calviղ
Calviղ - avatar
+ 2
it's a nice code,thank you
13th Sep 2017, 7:31 AM
caida dodosy
caida dodosy - avatar