适配的js

Posted 梦如影

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了适配的js相关的知识,希望对你有一定的参考价值。

/**
* Created by fanso2o on 2016/9/7.
*/
$(document).ready(function () {
function change() {
var html = document.getElementsByTagName(‘html‘)[0];
html.style.fontSize = 20 / 375 * document.body.clientWidth + ‘px‘;
}
$(window).resize(function () {
change();
$("body").removeClass("ng-hide");
});
$(window).resize();
});


<script type="text/javascript">
window.onload = function () {
function change() {
var html = document.getElementsByTagName(‘html‘)[0];
html.style.fontSize = 10 / 375 * window.screen.width + ‘px‘;
};
window.onresize = function () {
change();
};
change();
}
</script>




























以上是关于适配的js的主要内容,如果未能解决你的问题,请参考以下文章

js适配器模式

如何在 MobileFirst Platform 7.0 中从 JS 适配器过程调用 Java 适配器过程?

JS 设计模式: 适配器模式

在单个适配器中包含多个 JS 文件

移动端适配js

js设计模式-适配器模式