-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
49 lines (34 loc) · 1.3 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
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1" />
<meta name="format-detection" content="telephone=no"/>
<title>CSS3转盘抽奖</title>
<meta name="description" content="CSS3转盘抽奖">
<meta name="keywords" content="CSS3转盘抽奖">
<meta name="apple-mobile-web-app-title" content="CSS3转盘抽奖">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div id="wrapper">
<!-- main -->
<main class="main">
<div class="main-lottery">
<div class="main-lottery-content">
<div class="main-lottery-turntable">
<img class="width100 turntalbe-bg" id="lotteryImg" src="images/turntable.png" alt="CSS3转盘抽奖">
<a href="javascript:;" class="turntalbe-arrow" id="lotteryBtn">
点击抽奖
</a>
</div>
</div>
</div>
</main>
</div>
<script src="js/lottery.js"></script>
</body>
</html>