forked from iGaoWei/BigDataView
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
4,848 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
(function flexible(window, document) { | ||
var docEl = document.documentElement; | ||
var 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() { | ||
var rem = docEl.clientWidth / 24; | ||
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) { | ||
var fakeBody = document.createElement("body"); | ||
var 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); | ||
} | ||
})(window, document); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.