移动端适配

第一种:rem控制
(function() {
var html = document.documentElement;
var hWidth = html.getBoundingClientRect().width;
html.style.fontSize = hWidth / 15 + "px";
})();
第二种: css @media
@media (-webkit-min-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5)
.class
&::after
-webkit-transform: scaleY(0.7)
transform: scaleY(0.7)

@media (-webkit-min-device-pixel-ratio: 2),(min-device-pixel-ratio: 2)
.class
&::after
-webkit-transform: scaleY(0.5)
transform: scaleY(0.5)
注意:需要了解dpr: 设备物理像素/设备独立像素;由此可以知道缩放比……

移动端适配

上一篇:iOS 开发 Xib 的嵌套使用


下一篇:WPF: WrapPanel 容器的数据绑定(动态生成控件、遍历)