根据页面尺寸调整rem

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// 自适应响应式页面需加上以下js,为了使文字能够自适应页面改变html的字体大小
// 这个是根元素在750尺寸时为16px 优点是 与pc端页面修改不大,缺点是计算rem时比较费力
$(function () {
getRem();
window.onresize = function () {
getRem();
};
})

function getRem() {
var html = document.getElementsByTagName("html")[0];
var oWidth = document.body.clientWidth || document.documentElement.clientWidth;
var fontSize = (oWidth / 750) * 16;
if (fontSize > 16) {
fontSize = 16;
}
html.style.fontSize = fontSize + "px";

}



//这个是根元素在750尺寸时为100px 优点是 方便计算rem值,缺点是pc端的所有尺寸字号等若使用rem,需要都重新设置一下,不然会很大


function sm() {
//获取html元素
var psd = 750;
var html = document.getElementsByTagName('html')[0];
//屏幕的宽度(兼容处理)
var w = document.documentElement.clientWidth || document.body.clientWidth;
//750这个数字是根据你的设计图的实际大小来的,所以值具体根据设计图的大小
html.style.fontSize = w / psd * 100 + "px";
}


/*手机版判断*/
if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {
//手机
sm();
$(window).resize(function () {
sm();
})
} else {
//电脑
$("html").css("fontSize", "");
}

/*屏幕小于768*/
if ($(window).width() < 1201) {
sm();
} else {
$("html").css("fontSize", "");
}

$(window).resize(function () {
if ($(window).width() < 1201) {
sm();
} else {
$("html").css("fontSize", "");
}

})

根据页面尺寸调整rem
https://huangzunxue998.top/2024/04/29/根据页面尺寸调整rem/
Author
黄dada
Posted on
April 29, 2024
Licensed under