So basically I have this project where I'm trying to make a magnifying glass. The problem I encountered is that for a really zoomed in pictures, I don't have a clean zoom.
When I zoom on one screenshot, I get this:
I would like to get this:
Don't mind the scale here, I'm talking about the blurring effect! I think it's due to the fact that I'm using background size property to power my zoom and that it'sscaling the image. How can I prevent that from happening and keep a neat PNG zoom?
SOLVED
I have my solution thanks to you all. I added this to my css styles.
image-rendering: pixelated;
I works fine for me on recent Chrome version.