user2164609
user2164609

Reputation: 1

Lightbox and iframe fullscreen

when I'm using iframe to embed gallery into external site, lightbox loads only inside iframe. Example, 640x800px frame.

Is it possible to force it outsite of iframe, to go fullscreen? Like it's with video players.

I'm using Foobox.

Upvotes: 0

Views: 1526

Answers (2)

estrar
estrar

Reputation: 1373

You can do it with HTML5 - see example, JS Bin with iframe example and documentation here.

Upvotes: 1

Nick Audenaerde
Nick Audenaerde

Reputation: 1025

You can use a div instead of an iframe.

HTML
<div id="gallery">
The gallery
</div>

CSS
#gallery {
// your css
}

Upvotes: 0

Related Questions