I've got just a basic iframe, ind the middle of my page which looks like this:
<iframe class="iframe" src="http://route-to.page"></iframe>
When a user srolls down to this iframe, it will get extra css class, which will make the iframe full screen, with the following css style:
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
Now to the point: When a user scrolls down through this full screen iframe all the way to the bottom, it should remove the full screen css class from the iframe. This way, the user can continue scrolling through the rest of my page.