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.

My understanding is that this will ensure a device with a retina display will display the image as best as possible:

<img src="image_400x300.jpg" width="200" height="150" />

...and this is some FancyBox demo code

<a id="fb_image" href="image_800x600.jpg" title="The Title">
    <img src="image_400x300.jpg" width="200" height="150" />
</a>

...The thumbnail in the main web page will support a retina display, but I don't see how the image when opened with FancyBox can be programmed to support retina.

Any ideas?

share|improve this question

2 Answers

I've just added a pull request for retina support in fancyBox, have a look: https://github.com/fancyapps/fancyBox/pull/420

share|improve this answer

You may need to hack it using the beforeShow call back like :

$(document).ready(function() {
 $("#fb_image").fancybox({
  beforeShow: function(){
   var retinaWidth = this.width / 2; // set new image retina display width
   $(".fancybox-image").css({"width":retinaWidth,"height":"auto"}); // apply new retina display size to img
   // set new values for parent container
   this.width = retinaWidth;
   this.height = $(".fancybox-image").innerHeight();
  }
 }); // fancybox
}); // ready

If you are using this code for more than one image, use a class instead

<a class="fb_image" href...

and

$(".fb_image").fancybox()
share|improve this answer

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.