12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- (function (designWidth, maxWidth) {
- var doc = document
- var win = window
- var docEl = doc.documentElement
- var remStyle = document.createElement('style')
- var tid
- function refreshRem () {
- var width = docEl.getBoundingClientRect().width
- maxWidth = maxWidth || 540
- width > maxWidth && (width = maxWidth)
- var rem = width * 100 / designWidth
- remStyle.innerHTML = 'html{font-size:' + rem + 'px;}'
- }
- if (docEl.firstElementChild) {
- docEl.firstElementChild.appendChild(remStyle)
- } else {
- var wrap = doc.createElement('div')
- wrap.appendChild(remStyle)
- doc.write(wrap.innerHTML)
- wrap = null
- }
-
-
- win.addEventListener('resize', function () {
- clearTimeout(tid)
- tid = setTimeout(refreshRem, 300)
- }, false)
- win.addEventListener('pageshow', function (e) {
- if (e.persisted) {
- clearTimeout(tid)
- tid = setTimeout(refreshRem, 300)
- }
- }, false)
-
-
-
-
-
-
-
- })(1920, 1920)
|