We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在完全适配750px原稿的iphone6机型上数据有误; var width = docEl.getBoundingClientRect().width; // width = 370 maxWidth = maxWidth || 540; width>maxWidth && (width=maxWidth); var rem = width * 100 / designWidth; // rem = 50` 该方法没有考虑设备像素比,所有计算值和实际文章称font-size=100px(1rem)不符合;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在完全适配750px原稿的iphone6机型上数据有误;
var width = docEl.getBoundingClientRect().width;
// width = 370
maxWidth = maxWidth || 540;
width>maxWidth && (width=maxWidth);
var rem = width * 100 / designWidth;
// rem = 50`
该方法没有考虑设备像素比,所有计算值和实际文章称font-size=100px(1rem)不符合;
The text was updated successfully, but these errors were encountered: