Sha256: 053756ef5c3dd1aff223e11447abb50b714420c0adebb6d7f24f5ca76a7fac88

Contents?: true

Size: 496 Bytes

Versions: 16

Compression:

Stored size: 496 Bytes

Contents

module Browsed
  class Constants

    RESOLUTIONS = {
      desktop: [
        [1920, 1080], #17%
        [1366, 768], #35%
        [1280, 1024], #5%
        [1280, 800], #4%
        [1024, 768] #3%
      ],
    
      phone:
      {
        '4'   =>  [320, 480],
        '5'   =>  [320, 568],
        '6'   =>  [375, 667],
        '6+'  =>  [414, 736]
      },
    
      tablet:
      {
        'standard'  =>  [1024, 768],
        'retina'    =>  [2048, 1536]
      }
    }
        
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
browsed-0.2.5 lib/browsed/constants.rb
browsed-0.2.4 lib/browsed/constants.rb
browsed-0.2.3 lib/browsed/constants.rb
browsed-0.2.2 lib/browsed/constants.rb
browsed-0.2.1 lib/browsed/constants.rb
browsed-0.2.0 lib/browsed/constants.rb
browsed-0.1.9 lib/browsed/constants.rb
browsed-0.1.8 lib/browsed/constants.rb
browsed-0.1.7 lib/browsed/constants.rb
browsed-0.1.6 lib/browsed/constants.rb
browsed-0.1.5 lib/browsed/constants.rb
browsed-0.1.4 lib/browsed/constants.rb
browsed-0.1.3 lib/browsed/constants.rb
browsed-0.1.2 lib/browsed/constants.rb
browsed-0.1.1 lib/browsed/constants.rb
browsed-0.1.0 lib/browsed/constants.rb