-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 920 Bytes
/
index.html
File metadata and controls
28 lines (27 loc) · 920 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Home - tiao2’s page</title>
<link rel='stylesheet' href='main.css'/>
<div id='loading'>
<img height='100%' style='position:fixed; left: 30%;width:40%;'src="loading.svg"/>
<center id='load'>Loading.</center>
</div>
<script>
setInterval(function(){
var a=document.getElementById("load").innerHTML;
document.getElementById("load").innerHTML=(a.length>=10)?'Loading':(a+'.');
},800);
</script>
</head>
<body onload='document.getElementById("loading").style.display="none"'>
<img src='https://avatars.githubusercontent.com/u/169110045?v=4' height='5%' style='position: fixed; top: 0%; left: 0%; width: 5%; z-index: 10'/>
<div id='fh'></div>
<div id='project'></div>
<div id='map'></div>
<div id='pb'></div>
<script src='main.js'></script>
<script src="list.js"></script>
</body>
</html>