This is a partial contribution that needs completing, please help! I LOVE rolling the middle mouse button to zoom in and out. BUT My page is long and requires scrolling so while I zoom in and out of my MegaZine, the browser window is also scrolling.
So here's a snippet that turns page scrolling off for your MegaZine page:
PART 1:
<script language="javascript" type="text/javascript">
allowScroll = false;
document.body.style.overflow=allowScroll?"":"hidden";
</script>
This is all good but I want to be able to toggle the allowScroll variable - when the mouse is over the megazine, allowScroll = false and if outside of the book, allowScroll = true;
Is there an output or link to know when the mouse is over the book or not?