Hi there,
I am making a puzzle program. Each puzzle will have 9 pieces and I may end up having 30 puzzles meaning that I will need 9*30= 270 images. This number may grow as the program grows. I am also considering responsive web. The puzzle pieces(images) will also be animated on some events and user interactions. My concern is having lots of images(http requests) slow down the page.
I’ve thought about css image sprits but I can’t have the images as background image because they are puzzle piece shape and not rectangular.
I also thought about having one svg image for each puzzle but wasn’t sure how I can place parts of an svg image in different positions on the page.
Any thoughts how I can do it?
Thanks in advance,
Salma