-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (69 loc) · 2.4 KB
/
index.html
File metadata and controls
69 lines (69 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<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="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./css/style.css">
<style id="styleTag"></style>
</head>
<body>
<div class="main">
<div class="code-wrapper">
<pre id="code"></pre>
</div>
<div class="preview-wrapper">
<div class="preview">
<div class="wrapper">
<div class="nose"></div>
<div class="eye left"></div>
<div class="eye right"></div>
<div class="face left"></div>
<div class="face right"></div>
<div class="lowerLip-wrapper">
<div class="lowerLip"></div>
</div>
<div class="upperLip left"></div>
<div class="upperLip right"></div>
</div>
</div>
</div>
<div class="actions" id="tool">
<button class="active">
<span>开始</span>
<svg class="icon" aria-hidden="true">
<use xlink:href="#i-time-out"></use>
</svg>
</button>
<button>
<span>慢速</span>
<svg class="icon" aria-hidden="true">
<use xlink:href="#i-ring"></use>
</svg>
</button>
<button class="active">
<span>中速</span>
<svg class="icon" aria-hidden="true">
<use xlink:href="#i-run"></use>
</svg>
</button>
<button>
<span>快速</span>
<svg class="icon" aria-hidden="true">
<use xlink:href="#i-ring"></use>
</svg>
</button>
<button>
<span>结束</span>
<svg class="icon" aria-hidden="true">
<use xlink:href="#i-end"></use>
</svg>
</button>
</div>
</div>
<script src="//at.alicdn.com/t/font_1886287_8ea6vgaov17.js"></script>
<script type="module" src="./js/main.js"></script>
</body>
</html>