-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain2.php
65 lines (44 loc) · 1.22 KB
/
main2.php
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
60
61
62
63
64
65
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><style id="stndz-style"></style>
<title>Materials gallery | seen.js</title>
<style>
.bg{
width:100vw;
height:100vh;
background-image:url(img/cosmos.jpg);
background-size:100% 100%;
background-repeat: no-repeat;
margin:0;">
}
.control{
position:absolute;
top:90vh;
height:10vh;
width:100vw;
}
.btn{
height:10vh;
}
</style>
</head>
<body style="margin:0;">
<div class="bg"> </"div>
<div class="control">
<div align="center" style="width:33vw; position:relative; float:left;"><input type="image" class="btn" src="img/earth.png" onclick="place()"></div>
<div align="center" style="width:33vw; position:relative; float:left;"><input type="image" class="btn" src="img/jupiter.png" onclick="create()"></div>
<div align="center" style="width:33vw; position:relative; float:left;"><input type="image" class="btn" src="img/mars.png" onclick="finish()"></div>
</div>
</body>
</html>
<script>
function place(){
window.location.assign("place.php");
}
function create(){
window.location.assign("planet_create.php");
}
function finish(){
window.location.assign("finish.php");
}
</script>