Skip to content

Instantly share code, notes, and snippets.

View CharCoding's full-sized avatar
💻
Confused

Charly Cui CharCoding

💻
Confused
View GitHub Profile
@CharCoding
CharCoding / pixel-scaling.css
Last active January 24, 2020 03:12 — forked from pixelpicosean/pixel-scaling.css
Pixel-art scaling on HTML5 canvas
canvas {
image-rendering: pixelated;
image-rendering: crisp-edges;
image-rendering: -moz-crisp-edges;
image-rendering: -webkit-optimize-contrast;
-ms-interpolation-mode: nearest-neighbor;
}