flexible.js 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. function findDimensions() //函数:获取尺寸
  2. {
  3. if (window.innerWidth)
  4. winWidth = window.innerWidth;
  5. else if ((document.body) && (document.body.clientWidth))
  6. winWidth = document.body.clientWidth;
  7. // console.log(winWidth<546);
  8. // if(winWidth<546){
  9. ;(function(win, lib) {
  10. var doc = win.document;
  11. var docEl = doc.documentElement;
  12. var metaEl = doc.querySelector('meta[name="viewport"]');
  13. var flexibleEl = doc.querySelector('meta[name="flexible"]');
  14. var dpr = 0;
  15. var scale = 0;
  16. var tid;
  17. var flexible = lib.flexible || (lib.flexible = {});
  18. if (metaEl) {
  19. //将根据已有的meta标签来设置缩放比例
  20. var match = metaEl.getAttribute('content').match(/initial\-scale=([\d\.]+)/);
  21. if (match) {
  22. scale = parseFloat(match[1]);
  23. dpr = parseInt(1 / scale);
  24. }
  25. } else if (flexibleEl) {
  26. var content = flexibleEl.getAttribute('content');
  27. if (content) {
  28. var initialDpr = content.match(/initial\-dpr=([\d\.]+)/);
  29. var maximumDpr = content.match(/maximum\-dpr=([\d\.]+)/);
  30. if (initialDpr) {
  31. dpr = parseFloat(initialDpr[1]);
  32. scale = parseFloat((1 / dpr).toFixed(2));
  33. }
  34. if (maximumDpr) {
  35. dpr = parseFloat(maximumDpr[1]);
  36. scale = parseFloat((1 / dpr).toFixed(2));
  37. }
  38. }
  39. }
  40. if (!dpr && !scale) {
  41. var isAndroid = win.navigator.appVersion.match(/android/gi);
  42. var isIPhone = win.navigator.appVersion.match(/iphone/gi);
  43. var devicePixelRatio = win.devicePixelRatio;
  44. if (isIPhone) {
  45. // iOS下,对于2和3的屏,用2倍的方案,其余的用1倍方案
  46. if (devicePixelRatio >= 3 && (!dpr || dpr >= 3)) {
  47. dpr = 3;
  48. } else if (devicePixelRatio >= 2 && (!dpr || dpr >= 2)){
  49. dpr = 2;
  50. } else {
  51. dpr = 1;
  52. }
  53. } else {
  54. // 其他设备下,仍旧使用1倍的方案
  55. dpr = 1;
  56. }
  57. scale = 1 / dpr;
  58. }
  59. docEl.setAttribute('data-dpr', dpr);
  60. if (!metaEl) {
  61. metaEl = doc.createElement('meta');
  62. metaEl.setAttribute('name', 'viewport');
  63. metaEl.setAttribute('content', 'initial-scale=' + scale + ', maximum-scale=' + scale + ', minimum-scale=' + scale + ', user-scalable=no');
  64. if (docEl.firstElementChild) {
  65. docEl.firstElementChild.appendChild(metaEl);
  66. } else {
  67. var wrap = doc.createElement('div');
  68. wrap.appendChild(metaEl);
  69. doc.write(wrap.innerHTML);
  70. }
  71. }
  72. function refreshRem(){
  73. var width = docEl.getBoundingClientRect().width;
  74. if (width / dpr > 540) {
  75. width = 540 * dpr;
  76. }
  77. var rem = width / 10;
  78. docEl.style.fontSize = rem + 'px';
  79. flexible.rem = win.rem = rem;
  80. }
  81. win.addEventListener('resize', function() {
  82. clearTimeout(tid);
  83. tid = setTimeout(refreshRem, 300);
  84. }, false);
  85. win.addEventListener('pageshow', function(e) {
  86. if (e.persisted) {
  87. clearTimeout(tid);
  88. tid = setTimeout(refreshRem, 300);
  89. }
  90. }, false);
  91. if (doc.readyState === 'complete') {
  92. doc.body.style.fontSize = 12 * dpr + 'px';
  93. } else {
  94. doc.addEventListener('DOMContentLoaded', function(e) {
  95. doc.body.style.fontSize = 12 * dpr + 'px';
  96. }, false);
  97. }
  98. refreshRem();
  99. flexible.dpr = win.dpr = dpr;
  100. flexible.refreshRem = refreshRem;
  101. flexible.rem2px = function(d) {
  102. var val = parseFloat(d) * this.rem;
  103. if (typeof d === 'string' && d.match(/rem$/)) {
  104. val += 'px';
  105. }
  106. return val;
  107. }
  108. flexible.px2rem = function(d) {
  109. var val = parseFloat(d) / this.rem;
  110. if (typeof d === 'string' && d.match(/px$/)) {
  111. val += 'rem';
  112. }
  113. return val;
  114. }
  115. })(window, window['lib'] || (window['lib'] = {}));
  116. // }else{
  117. // console.info("执行2");
  118. // //获取窗口宽度
  119. // if (window.innerWidth)
  120. // winWidth = window.innerWidth;
  121. // else if ((document.body) && (document.body.clientWidth))
  122. // winWidth = document.body.clientWidth;
  123. //
  124. // //通过深入Document内部对body进行检测,获取窗口大小
  125. // if (document.documentElement && document.documentElement.clientWidth)
  126. // {
  127. //
  128. // winWidth = document.documentElement.clientWidth;
  129. // }
  130. // //结果输出至两个文本框
  131. // var x=54+((winWidth-546)*0.1);
  132. //
  133. //
  134. //
  135. // var attr = document.getElementById("attr");
  136. //
  137. // if(winWidth>546){
  138. // attr.setAttribute("style", "font-size:"+x+"px;")
  139. //
  140. // }
  141. // }
  142. }
  143. findDimensions();
  144. //调用函数,获取数值
  145. window.onresize=findDimensions;