I have a HTML5 mobile application where I am loading 10 images at a time from imgur when the user clicks a button. After retrieving the images, I am applying CSS formatting to adjust the height and width for proper display on an iPhone.
I suspect that the delay in loading the images may be due to applying formatting after retrieval. Would it be more efficient to save the images in the desired state with the correct dimensions beforehand so that no CSS adjustments are needed? Do you think this would speed up the loading process?
Thank you!