+ 6
Is it possible to draw some shapes (other than boxes, triangles, circle) like heart, starts or other shapes.?
4 odpowiedzi
+ 3
Hi Chezel
On web you can do amazing things with divs and css , have a look here what can be done with a single div
https://a.singlediv.com/
If you want to do full blown animation you can use web animation api with svgs
https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API/Using_the_Web_Animations_API
Draw your SVG shapes in inkscape
https://inkscape.org/en/
Lovley example here
https://inkscape.org/en/~IK/%E2%98%85animation-inkscape-koi-carp
+ 3
You mean using JavaScript correct? You can but it will be extremely complicated since you will have to draw each of them using line to and fill rect and arc.
+ 3
Thanks Guys.