-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (36 loc) · 1.23 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>wheel</title>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.2/semantic.min.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<div class="allCenter" id="title">
<h1>中興資訊社|社博抽獎囉</h1>
</div>
<div class="allCenter" id="main">
<div class="ui container">
<div id="wheel">
</div>
</div>
<div class="ui modal">
<i class="close icon"></i>
<div class="header">Congratulations!</div>
<div class="content">
<img id="prizeImage" src="">
<div class="description">
<h4>恭喜你抽到</h4>
<h3 id="prizeName"></h3>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.2.2/semantic.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.4.6/phaser.min.js" charset="utf-8"></script>
<script src="./js/wheel.js" charset="utf-8"></script>
</body>
</html>