forked from amfe/lib-flexible
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
52 lines (47 loc) · 1.49 KB
/
index.js
File metadata and controls
52 lines (47 loc) · 1.49 KB
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
/**
* flexible
* @see https://github.com/amfe/lib-flexible
* @param designWidth 设计师起稿宽度
* @param pxPerRem 每个1rem多少px
*/
export default function flexible(designWidth = 750, pxPerRem = 100) {
const docEl = document.documentElement
const dpr = window.devicePixelRatio || 1
// adjust body font size
function setBodyFontSize () {
if (document.body) {
document.body.style.fontSize = (12 * dpr) + 'px'
} else {
document.addEventListener('DOMContentLoaded', setBodyFontSize)
}
}
setBodyFontSize();
// set 1rem = viewWidth / (10)
function setRemUnit () {
let { clientWidth } = docEl
// if (minAdaptWidth && clientWidth < minAdaptWidth) clientWidth = minAdaptWidth
// if (maxAdaptWidth && clientWidth < maxAdaptWidth) clientWidth = maxAdaptWidth
const rem = clientWidth / (designWidth / pxPerRem)
docEl.style.fontSize = rem + 'px'
}
setRemUnit()
// reset rem unit on page resize
window.addEventListener('resize', setRemUnit)
window.addEventListener('pageshow', function (e) {
if (e.persisted) {
setRemUnit()
}
})
// detect 0.5px supports
if (dpr >= 2) {
const fakeBody = document.createElement('body')
const testElement = document.createElement('div')
testElement.style.border = '.5px solid transparent'
fakeBody.appendChild(testElement)
docEl.appendChild(fakeBody)
if (testElement.offsetHeight === 1) {
docEl.classList.add('hairlines')
}
docEl.removeChild(fakeBody)
}
}