2013-08-19 50 views
5

我想放大CSS精靈像素藝術圖像,並希望完全禁用抗鋸齒/圖像平滑。縮放CSS精靈像素藝術,無圖像平滑

每這篇文章在這裏:Disable antialising when scaling images我已經在Chrome和I.E.但是嘗試了以下CSS

image-rendering: optimizeSpeed;    
image-rendering: -moz-crisp-edges;   
image-rendering: -o-crisp-edges;   
image-rendering: -webkit-optimize-contrast; 
image-rendering: optimize-contrast;  
-ms-interpolation-mode: nearest-neighbor; 

它的工作完全像我在Firefox想,它有一點幫助,但仍然會出現一些圖像插值/平滑/抗鋸齒。

我不想使用canvas元素,而只是堅持使用CSS背景圖片精靈。

有沒有辦法在其他瀏覽器中實現與「-moz-crisp-edges」相同的結果?

+1

請看看這裏:http://stackoverflow.com/questions/3900436/image-scaling-by-css-is-there-a-webkit-alternative-for-moz-crisp-edges/8888964#8888964 – GibboK

回答