I have a web app that will show gallery of thumbnails. My problem is, some images are very huge (like 6000 x 6000), and my current approach is load the image into image tag, then use css to set max-width and max-height, which is very slow because of the huge image loaded behind.
What is the easiest solution for this situation?
I am using Rails, and the images are uploaded using Carrierwave.