app.html 1.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
<!doctype html>
		<html lang="en">
			<head>
				<meta charset="UTF-8">
        <link rel="shortcut icon" href="../icons/favicon.ico" >
				<title>uni-dev-tools</title>
				<style>
					#app,
					#intro {
						display: flex;
						flex-direction: column;
						position: absolute;
						top: 0;
						left: 0;
						right: 0;
						bottom: 0;
						margin: 0;
						padding: 0;
					}

					#intro {
						z-index: 100000;
						justify-content: center;
						align-items: center;
						background-color: #fff;
						text-align: center;
						font-family: Roboto, sans-serif;
						color: #484848;
					}

					#intro.hidden {
						display: none;
					}

					#intro #logo {
						width: 120px;
					}

					#intro .title {
						margin: 30px 0;
						font-size: 26px;
					}
				</style>
			</head>
			<body>
				<div id="intro">
					<img src="./icons/128.png" alt="" id="logo" />
					<h2 class="title">
						Waiting for connection...
					</h2>
				</div>
				<div id="app">
				</div>
				<script src='./mp-alipay/network.js'></script>
				<script src='./devtools.js'></script>
			</body>
		</html>