forked from gunil/wheel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·71 lines (71 loc) · 1.51 KB
/
index.html
File metadata and controls
executable file
·71 lines (71 loc) · 1.51 KB
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
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
<title>다양한 뽑기 게임</title>
<style>
body {
background-color: #0a4f9d;
}
h1 {
text-align: center;
font-size: 30px;
color: #fff;
}
.select-item {
text-align: center;
}
.select-item a {
position: relative;
overflow: hidden;
display: inline-block;
width: 180px;
height: 180px;
margin: 10px;
border-radius: 50%;
vertical-align: top;
transform: translateY(0);
}
.select-item a:after {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
border: 1px solid #000;
border-radius: 50%;
opacity: .1;
content: '';
}
.item {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
color: transparent;
}
</style>
</head>
<body>
<h1>Your Choice!!</h1>
<div class="select-item">
<a href="slot">
<span class="item" style="background-image:url(1.png)">slot game</span>
</a>
<a href="spin">
<span class="item" style="background-image:url(2.png)">spin game</span>
</a>
<a href="lottery">
<span class="item" style="background-image:url(3.png)">lottery game</span>
</a>
<a href="pickme">
<span class="item" style="background-image:url(4.png)">pickme game</span>
</a>
</div>
</body>
</html>