Created
August 18, 2015 17:47
-
-
Save TrevorJTClarke/91e721479f6987ecd51b to your computer and use it in GitHub Desktop.
Common Desktop and Tablet Browser Sizes and Properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var commonBrowserViewports = [ | |
{ name: 'Desktop - Extra Large', width: 2880, height: 1800, ratio: 2 }, | |
{ name: 'Desktop - Large', width: 1920, height: 1080, ratio: 1 }, | |
{ name: 'Desktop', width: 1440, height: 900, ratio: 1 }, | |
{ name: 'Desktop', width: 1366, height: 768, ratio: 1 }, | |
{ name: 'Desktop', width: 1280, height: 800, ratio: 1 }, | |
{ name: 'Tablet - Portrait', width: 768, height: 1024, ratio: 1 }, | |
{ name: 'Tablet - Landscape', width: 1024, height: 768, ratio: 1 } | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment