Search code examples
jquerylightboxslimbox

limit slimbox (lightbox) image to window size


HI all,

Anyone know how to limit the overlay window size of slimbox to be a percentage of the user's window size (like prettyphoto does)

Thanks

Here's the module code: http://paste.ly/3Kz

And the slimbox js: http://paste.ly/3L0


Solution

  • capture the users window resolution and set the overlay's width and height according to captured info...

    $('#overlay').width($(window).width()).height($(window).height());