-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (61 loc) · 2.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>千恋时计</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="shortcut icon" href="./images/icon.png" type="image/x-icon">
</head>
<body>
<div id="main">
<div id="bg">
<div id="clock">
<div id="left">
<span id="clockDate"></span>
<span id="clockWeekday"></span>
</div>
<div id="right">
<span id="clockTime"></span>
</div>
</div>
<div id="character"></div>
</div>
<div id="settings">
<div id="setPlace">
<div class="title">地点</div>
<input type="radio" name="place" id="dc" value="dc">道场
<input type="radio" name="place" id="hs" value="hs" checked>和室
<input type="radio" name="place" id="lg" value="lg">旅馆
<input type="radio" name="place" id="ss" value="ss">神社
<input type="radio" name="place" id="st" value="st">食堂
<input type="radio" name="place" id="yc" value="yc">浴场
</div>
<div id="setCharacter">
<div class="title">角色</div>
<input type="radio" name="character" id="yoshino" value="yoshino">芳乃
<input type="radio" name="character" id="mako" value="mako" checked>茉子
<input type="radio" name="character" id="murasame" value="murasame">丛雨
<input type="radio" name="character" id="lena" value="lena">蕾娜
</div>
<div id="setPose">
<div class="title">姿势</div>
<input type="radio" name="pose" id="1" value="1" checked>姿势1
<input type="radio" name="pose" id="2" value="2">姿势2
<input type="radio" name="pose" id="3" value="3">姿势3
</div>
<div id="setCloth">
<div class="title">服装</div>
<input type="radio" name="cloth" id="xf" value="xf" checked>校服
<input type="radio" name="cloth" id="sf" value="sf">私服
<input type="radio" name="cloth" id="wnf" value="wnf">巫女服
<input type="radio" name="cloth" id="rzf" value="rzf">忍者服
<input type="radio" name="cloth" id="hf" value="hf">和服
<input type="radio" name="cloth" id="yy" value="yy">浴衣
</div>
</div>
</div>
<script src="./js/senrenClock.js"></script>
</body>
</html>