36kr.com 这个网站在改变屏幕宽度时字体大小跟着改变,是怎样做到的呢?

网址:http://36kr.com
屏幕宽度为320px时,html的字体大小为15px

<html lang="en" class="" style="font-size: 15.6098px;">

屏幕宽度为768px时,html的字体大小是37px

<html lang="en" class="" style="font-size: 37.4634px;">

以前见过在css中添加media query给body的font-size赋值,第一次见到用js控制字体的;

03021009更新:
非常感谢各位答主的回答;不过有些答主好像方向不太对;
我知道用了rem,也知道css media query,也知道用了js控制根元素html的font-size;
我现在困惑的点是:他是用什么样的标准用js计算出来的


繁花不似锦
浏览 395回答 1
1回答

30秒到达战场

就是类似于这样就可以,html {&nbsp; &nbsp; &nbsp;font-size: 62.5%; /* 10÷16=62.5% */ } @media only screen and (min-width: 481px){&nbsp; &nbsp; &nbsp;html {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;font-size: 94%!important; /* 15.04÷16=94% */&nbsp; &nbsp; &nbsp;} } @media only screen and (min-width: 561px){&nbsp; &nbsp; &nbsp;html {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;font-size: 109%!important; /* 17.44÷16=109% */&nbsp; &nbsp; &nbsp;} } @media only screen and (min-width: 641px){&nbsp; &nbsp; &nbsp;html {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;font-size: 125%!important; /* 20÷16=125% */&nbsp; &nbsp; &nbsp;} }或者用rem布局也可以说道标准,主要涉及到两点设计稿的尺寸rem到px的转换规则举个栗子,比如设计稿的尺寸的标准是720,在720的标准下,转换规则为1rem为100px,这两点标准定下来,就够了。比如在设计稿中的某段文字的字体为20px,根据转换规则,在css中就是0.2rem,那么在屏幕宽度为360px的时候,我们希望字体为10px,也就是同样的0.2rem为10px,换算一下就是1rem为50px,这个50px就是我们需要动态算的,所以下面计算用到的100和720就是这个标准,当clientWidth为360的时候,计算出来的fontSize&nbsp;为&nbsp;50,也就是1rem为50px(function (doc, win) {&nbsp; &nbsp; var docEl = doc.documentElement,&nbsp; &nbsp; &nbsp; &nbsp; resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize',&nbsp; &nbsp; &nbsp; &nbsp; recalc = function () {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; var clientWidth = docEl.clientWidth;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (!clientWidth) return;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; docEl.style.fontSize = 100 * (clientWidth / 720) + 'px';&nbsp; &nbsp; &nbsp; &nbsp; };&nbsp; &nbsp; if (!doc.addEventListener) return;&nbsp; &nbsp; win.addEventListener(resizeEvt, recalc, false);&nbsp; &nbsp; doc.addEventListener('DOMContentLoaded', recalc, false);})(document, window);
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript