Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

Resolutions.js 906B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. const Resolutions = {
  2. '1080': {
  3. width: 1920,
  4. height: 1080,
  5. order: 7
  6. },
  7. 'fullhd': {
  8. width: 1920,
  9. height: 1080,
  10. order: 7
  11. },
  12. '720': {
  13. width: 1280,
  14. height: 720,
  15. order: 6
  16. },
  17. 'hd': {
  18. width: 1280,
  19. height: 720,
  20. order: 6
  21. },
  22. '960': {
  23. width: 960,
  24. height: 720,
  25. order: 5
  26. },
  27. // 16:9 resolution first.
  28. '360': {
  29. width: 640,
  30. height: 360,
  31. order: 4
  32. },
  33. '640': {
  34. width: 640,
  35. height: 480,
  36. order: 3
  37. },
  38. 'vga': {
  39. width: 640,
  40. height: 480,
  41. order: 3
  42. },
  43. // 16:9 resolution first.
  44. '180': {
  45. width: 320,
  46. height: 180,
  47. order: 2
  48. },
  49. '320': {
  50. width: 320,
  51. height: 240,
  52. order: 1
  53. }
  54. };
  55. module.exports = Resolutions;