Description
I observed that the images are resized on the client size. It seems like its not the best for when you have a list of retina images that you want to scroll thru —
http://www.html5rocks.com/en/tutorials/speed/scrolling/#toc-resizing
Which states —
If you're sending large images to a device and then scaling them down using CSS or image dimension attributes, you're more likely to see this happen. Of course the amount by which the browser has to rescale images, and the frequency with which it has to do this, is going to affect your page's performance as they happen on the main browser thread, and therefore block other work from taking place.
One solution that I think might work is to simply hide the images at the time of scrolling and show the scrolling stops. This would definitely effect the user's experience I think.
I would really like to know your thoughts on how we can improve scroll perfs here?