-
Notifications
You must be signed in to change notification settings - Fork 0
/
old_index.php
58 lines (40 loc) · 931 Bytes
/
old_index.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
<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;">
}
.start{
width : 200px;
height : 200px;
position:absolute;
left:80vw;
top:60vh;
}
</style>
</head>
<body style="margin:0;">
<div class="bg"> </"div>
<input type="image" class="start" src="img/play1.png" alt="send" name="start" id="start" onclick="send()" onmouseover="hhover()" onmouseout="nor()"/>
</body>
</html>
<script>
function send(){
window.location.assign("star_create.php");
}
function hhover(){
var a = document.getElementById("start");
a.src="img/play22.png";
}
function nor(){
var a = document.getElementById("start");
a.src="img/play1.png";
}
</script>