blasten / turn.js

The page flip effect for HTML5
www.turnjs.com
Other
7.21k stars 2.47k forks source link

Can links be made to work in zoom view? #126

Closed perdittmann closed 12 years ago

perdittmann commented 12 years ago

Hi,

I am working on a flipbook for a client who wants the links on pages to also work when the page is zoomed.

Is it possible to get there (can the regions file also be read out (and resized) in the zoom view?), or do I have to hope for another release? :-)

Many thanks for any advice on that!

blasten commented 12 years ago

@perdittmann you can change the CSS, so all regions will show up when the page is zoomed.


.magazine-viewport .zoomer .region{
    display:none;
}

.magazine-viewport .zoom-in .region{
    display:none;
}
perdittmann commented 12 years ago

Wow, great! Thanks a lot!