I'm working on a photography site with a lot of images and they have no fixed height and width as I want this site to be 100% fluid: how do you work around the ugly Chrome repaint of the images? (i.e. Images are first displayed at zero height and then rescaled to their final size moving around the entire layout)

I've tried pretty much everything and my last option is to hide the image repaint with a black div and then set its opacity to 0 when images are finished loading (BTW, I've tried this with a (document).ready call but it seems too soon: how would you do it?)

link|improve this question
feedback

3 Answers

Specify your image's height and width attribute / its dimensions.

<img src="img.jpg" width="125" height="60" alt="My First Photograph ever">

This helps the browser avoid a second pass to layout your page and it optimizes page load as well! :)

link|improve this answer
This is how I would do it too. This makes the blank space before the image is rendered the correct size. – jimplode Nov 17 '11 at 11:49
Well, that pretty much defeats the purpose of having flexible images! – teolives Nov 17 '11 at 15:05
@teolives don't forget to mark this as ur answer if it solved ur problem. THanks! – jc david Nov 22 '11 at 22:41
@jc david: No, it didn't solve my problem as per my previous comment... – teolives Nov 23 '11 at 15:13
feedback

Chrome (or any browser really) cannot avoid this 'repainting', since they don't know on forehand what size your images will be.

Thus, you will need to explicitly specify the sizes of your images, either in the image width and height properties itself, or via CSS.

link|improve this answer
I disagree, only webkit browsers seem to start with 0 height during rendering: FF, IE, opera, all save room for the pictures without rescaling the entire layout. – teolives Nov 17 '11 at 15:09
feedback

It’s hard to test, but you could try setting width/height in CSS

img {display: block; width: 100%; height: auto;}

if you want the images to be full-width. This might prevent a full-page repaint, but of course there’ll be some repaint regardless as images load. You can also investigate what’s happening with Chrome’s --show-paint-rects

Hope that helps

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.