+ 1
How to insert an moving image in html??
6 Respuestas
+ 4
Are you referring to an animated GIF? If so, you would use an <img> tag.
+ 3
One way is to include a video which is also a type of moving image.
+ 1
Try looking up canvas for html5 and SVG animations can be created using the <animate> element.
+ 1
[Tutorial] Upload content from your device to CodePlayground - The Dropbox way
https://code.sololearn.com/WW6t4B73kJVz/?ref=app
+ 1
Use img tag if using a gif, or you can draw with canvas, or use an svg ...
I often just draw the vectors I want to use in photoshop and save as svg and animate it with css.