1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <link rel="shortcut icon " type="images/x-icon" href="./favicon.ico" />
- <meta
- name="viewport"
- content="width=device-width, initial-scale=1.0,user-scalable=no"
- />
- <title>中国中车--成都7号线虚拟仿真教学系统</title>
- <script>
- (function setRootFont() {
- var _self = window;
- _self.selfFontSize = undefined;
- _self.width = 1120; //设置默认最大宽度
- _self.fontSize = 100; //默认字体大小
- _self.widthProportion = function () {
- var clientWidth =
- document.documentElement.clientWidth > 1120
- ? 1120
- : document.documentElement.clientWidth;
- var p = clientWidth / _self.width;
- return p;
- };
- _self.changePage = function () {
- var w = _self.widthProportion();
- _self.selfFontSize = w * _self.fontSize;
- document
- .getElementsByTagName("html")[0]
- .setAttribute("style", "font-size:" + _self.selfFontSize + "px");
- };
- _self.changePage();
- window.addEventListener(
- "resize",
- function () {
- _self.changePage();
- },
- false
- );
- })();
- </script>
- <script type="module" crossorigin src="./assets/index-700f8bec.js"></script>
- <link rel="modulepreload" crossorigin href="./assets/main-4801cc52.js">
- <link rel="stylesheet" href="./assets/main-f8bd3d55.css">
- </head>
- <body>
- <div id="app"></div>
-
- </body>
- </html>
|