Samsung Galaxy Size 5
I have some problems replicating a site issue with a Samsung Note 5. The display is broken while using the specified device. I tried using the chrome dev tool and tweaking the dimensions to be able to replicate it, but no luck. I also search the web, but I can't see the size of the note 5 viewport.
I tried 360x640
it but it displays without issue, so I think this is the wrong viewport for note 5. Any help would be much appreciated.
source to share
According to statistics
Pixel size: 1440 x 2560
ViewPort size: 480 x 853
Also you can get this information using javascript:
var w = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
var h = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
From this site
Screen Size (X - Horizontally): 1440
Screen Size (Y - Vertically): 2560
Pixel Ratio: 4.0
Portrait
It's 360 x 640
The site also allows you to enter any url and display it in the virtual galaxy 5 note
Side note
The material design project has a web directory listing the display details of many famous mobile phones.
Alternative site
This site also allows url to be displayed in virtual galaxy 5 note
Disclosure: I am in no way associated with any of the sites, and also am not its official representative
source to share