fontSize.js 564 B

1234567891011121314151617
  1. !function(){
  2. var windowWidth = document.documentElement.clientWidth;
  3. if(windowWidth > 750) {
  4. windowWidth = 750;
  5. }
  6. var fontSize = windowWidth / 750 * 50;
  7. document.getElementsByTagName('html')[0].style.fontSize = fontSize + "px";
  8. window.onresize = function(){
  9. var windowWidth = document.documentElement.clientWidth;
  10. if(windowWidth > 750) {
  11. windowWidth = 750;
  12. }
  13. fontSize = windowWidth / 750 * 50;
  14. document.getElementsByTagName('html')[0].style.fontSize = fontSize + "px";
  15. }
  16. }();