mirror of
https://github.com/est31/leaftest.git
synced 2024-11-15 07:00:28 +01:00
Support more browsers for pixelated zoom in effect
This commit is contained in:
parent
46d99bd323
commit
881c0c6253
|
@ -2,15 +2,19 @@
|
||||||
width: 98%;
|
width: 98%;
|
||||||
height: 98%;
|
height: 98%;
|
||||||
margin: 1% 1% 1% 1%;
|
margin: 1% 1% 1% 1%;
|
||||||
image-rendering: -moz-crisp-edges; /* firefox */
|
image-rendering: -moz-crisp-edges; /* Firefox */
|
||||||
image-rendering: pixelated; /* hopefully everyone eventually */
|
image-rendering: -webkit-crisp-edges; /* Safari */
|
||||||
|
image-rendering: pixelated; /* Chromium */
|
||||||
|
-ms-interpolation-mode: nearest-neighbor; /* iexplore.exe (but not edge) */
|
||||||
}
|
}
|
||||||
|
|
||||||
#map {
|
#map {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
image-rendering: -moz-crisp-edges; /* firefox */
|
image-rendering: -moz-crisp-edges; /* Firefox */
|
||||||
image-rendering: pixelated; /* hopefully everyone eventually */
|
image-rendering: -webkit-crisp-edges; /* Safari */
|
||||||
|
image-rendering: pixelated; /* Chromium */
|
||||||
|
-ms-interpolation-mode: nearest-neighbor; /* iexplore.exe (but not edge) */
|
||||||
}
|
}
|
||||||
|
|
||||||
#info {
|
#info {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user