I am working on small web application for iPad Safari. I have to display image of one product and two simple color pickers. Color pickers allow to customize product's colors (two separate areas on the image). There are 30 colors in each color picker so there is 30x30 product variations. What would be the best solution for this problem.
I can't use Flash.
I am thinking of:
- 900 rendered product images with all color variations
- I could cut part of each image and overlap them. It would be 60 images.
- SVG. I have never used it. Is it possible to add two transparent layers over white product image, change its colors with java script and tint image that way.