I have a grid of zoomable div elements. When a div is clicked, it is zoomed, scaled and centered using Zoomooz.js. Inside each div is a drawable region (like Canvas) implemented using Raphäel.
My problem is that even though the zoom function work perfectly, the scaling of the div makes it impossible to do reasonably drawing on the div, since the div is scaled up, not just transformord to a larger width/height. I really want the zooming effect, but instead of scaling the div(s) my guess is that I want to do a transform on all the divs, and center the selected div using an easing effect or the like.
Any suggestions would be much appreciated!