fontSize.js 420 B

1234567891011121314
  1. !(function(win, doc) {
  2. function setFontSize() {
  3. var docEl = doc.documentElement;
  4. var winWidth = docEl.clientWidth;
  5. doc.documentElement.style.fontSize = (winWidth / 375) * 10 + 'px';
  6. }
  7. var userAgent = navigator.userAgent;
  8. win.addEventListener('resize', function() {
  9. if (navigator.userAgent !== userAgent) {
  10. location.reload();
  11. }
  12. })
  13. setFontSize();
  14. }(window, document));