在我的div中,我想显示图像的一个特定部分(该部分是8x8像素)(在原始图像上,要查看8x8像素,您必须执行背景位置:-8px-8px;),但放大后会显示“保存的像素”。
所以当放大而不是缩小时,你会得到http://piclair.com/86m3r
如果有人现在如何做到这一点,请告诉我。我真的需要解决这个问题!

最佳答案

css图像插值属性的更完整列表可以在这里找到:http://www.danolsavsky.com/article-images-interpolation-browser-rendering-and-css-resizing.html
火狐:
image-rendering: optimizeSpeed;
image-rendering: optimizeQuality;
image-rendering: -moz-crisp-edges;
歌剧院:
image-rendering: -o-crisp-edges;
铬:
image-rendering: -webkit-optimize-contrast;
IE 8+:
-ms-interpolation-mode: nearest-neighbor;
W3C标准:
image-rendering: optimize-contrast;

关于html - 在HTML/CSS中按像素放大图像?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5372224/

10-10 05:13