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.

+3


source to share


3 answers


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);

      

0


source


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

+2


source


Samsung Galaxy Note 5
screen size: 1440 x 2560
viewport: 480 x 853

      

+1


source







All Articles