I added the following to the webpage to make it inaccessible to mobile devices, and try to make this display in native resolution:
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1,user-scalable=no" />
However, when viewing on my Samsung Galaxy S and printing screen.width with JavaScript, it gives 320 in portrait orientation and 533 in landscape orientation. How can I make him use my own resolution of 480 × 800, or is it just not possible?
I would like to do this so that the image quality does not deteriorate, displaying it with a magnification of 1.5 (originally pixelated using a smoothing filter).
source share