i am programming a jquery plugin which loads lots of images.
I would prefer to show the picture first fuzzy and if it's fully loaded, in complete.
Facebook is a good example.
How does this technique work?
|
i am programming a jquery plugin which loads lots of images. I would prefer to show the picture first fuzzy and if it's fully loaded, in complete. Facebook is a good example. How does this technique work? |
|||||||||
|
|
This depends on the format that the image is saved in. JPG images normally load (and hence display) from top to bottom. If however they are stored in progressive (also called interlaced) format then they will load the whole image in a grainy format and gradually increase the quality. Facebook save their images in the progressive format. There are utilities available for converting from the first format into the second. Here is a link to a well known one (ImageMagick): ImageMagick |
|||||||
|
|
You just have two images: one of bad quality, and one of good quality and. When you want to show image, you first set image.src to bad quality image, and then instantly to good image path (setTimeout with 0 delay will work too). It works, because browser doesn't replace image in img tag until it's fully loaded. Image with bad quality will loaded much faster than good image, so user will first see fuzzy image and fully loaded image when it's loaded. Example
|
|||
|
|
The usual approach is to set width and height on a thumbnail version of the image to full size of the big image, and replace the thumbnail with full image when the large one is loaded. When you set the full size on the thumbnail image, it becomes 'fuzzy' becuase it's interpolated to a larger size by the browser. |
|||
|
|