jaukia / zoomooz

An easy-to-use jQuery plugin for making zooming web pages.
http://janne.aukia.com/zoomooz/
1.79k stars 275 forks source link

Using -webkit-perspective makes the elements pixelated on zoom-in #110

Open mladengorchev opened 9 years ago

mladengorchev commented 9 years ago

Hi there,

First thanks for the great work you have done!

I am trying to implement your plugin on a project I'm working on http://dev.mladengorchev.com/book_viewer/ , and it works great, except one thing.

On -webkit- browsers when I use the css "perspective" property and when I zoom-in (click on the book) it actually stays pixelated. I understand that this is not an issue with your plugin, however I don't know who else to ask for help...

If you open the above link in Firefox, it works fine. I've read that it might be because of the hardware acceleration, but I couldn't fix it....

Thank you! Deni

milos12345 commented 9 years ago

Try to doing something like .book { width:2000px; height:1000px; -ms-transform: scale(0.2,0.2); /* IE 9 / -webkit-transform: scale(0.2,0.2); / Safari */ transform: scale(0.2,0.2); } then when it is zoomed in it will stay sharp. I know it is an improvisation but when I was making my own website that was the only way