<script type="text/javascript">
(function() {
'use strict';
window.onresize = function() {
changeFontSize();
}
function changeFontSize() {
var W = document.documentElement.clientWidth;
var docEl = document.documentElement;
if (W > 640) {
W = 640;
docEl.style.fontSize = '100px';
}
document.getElementsByTagName('html')[0].style.fontSize = W / 6.4 + 'px';
}
changeFontSize();
})();
</script>
(function() {
'use strict';
window.onresize = function() {
changeFontSize();
}
function changeFontSize() {
var W = document.documentElement.clientWidth;
var docEl = document.documentElement;
if (W > 640) {
W = 640;
docEl.style.fontSize = '100px';
}
document.getElementsByTagName('html')[0].style.fontSize = W / 6.4 + 'px';
}
changeFontSize();
})();
</script>