Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to display pre-load image center of image's div. But all images have different size so pre-load image can not be displayed in center of each image.

Thanks for advance!

share|improve this question

1 Answer

You can use css to resolve this problem. Add class "pre-loader" to every image on your page, and describe it with css:

.pre-loader {
  background: #ccc url(loaderimageurl) center center no-repeat;
}

Then use js like this:

$("img").load(function () { $(this).removeClass("pre-loader"); });
share|improve this answer
to the best i recommend you to and min-width and min-height to every image – whytobe Aug 3 '12 at 12:50
it can ruin the makeup. and small images will be loaded quick enough. i guess. imo thats bad idea to put loaders on images. – Vladislav Qulin Aug 3 '12 at 12:51
I tried your offer. load image can not be displayed if width and heigh is not determined. when I determine width and height and when I addClass to all images, all of these image resized to load image. – oxygen Aug 3 '12 at 13:54
You can determine those parameters in css-rule for .pre-loader, like np. – Vladislav Qulin Aug 4 '12 at 6:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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