-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworldsimulator.html
59 lines (52 loc) · 1.45 KB
/
worldsimulator.html
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
58
59
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://code.jquery.com/jquery-3.3.1.slim.js" integrity="sha256-fNXJFIlca05BIO2Y5zh1xrShK3ME+/lYZ0j+ChxX2DA=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/seedrandom/2.4.4/seedrandom.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<script src="files.js"></script>
<script src="default.js"></script>
<link rel="stylesheet" type="text/css" href="default.css">
<title>Gravity particle simulation</title>
<style>
iframe {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
border-width:0px;
}
.container {
width: 100%;
padding-top: 100%;
position: relative;
}
</style>
<script>
$(function(){
if(lc.mobile){
var banner = document.createElement("div");
$(banner).addClass( "lc_banner");
banner.innerHTML="Warning: Might not work on mobile!";
$(banner).insertBefore($(".container")[0])
}
});
</script>
</head>
<body>
<div id=lc_header>
Gravity particle simulation
</div>
<div id=lc_content>
<div id=lc_title>
</div>
<div class=container>
<iframe src="World%20Simulator/index.html">ERROR</iframe>
</div>
</div>
</body>
</html>