if i draw my images in different canvas can i apply some effects like fades, movements and other effects with a js library?
and if is possible, could be interesting in terms of speed and performances instead of manipulating the “raw” ?
thanks a lot
if i draw my images in different canvas can i apply some effects like
Share
Yes, you can. You don’t need a library.
Canvas would be faster as it doesn’t involve going through the DOM and setting CSS properties, as you would if you manipulate images without canvas.