forked from ShenXuanMiao/GengShuang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (32 loc) · 1.59 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="theme-color" content="#333333">
<title>Geng Shuang Emulator</title>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,700&display=swap" rel="stylesheet">
<link href="css/normalize.css" rel="stylesheet">
<link href="css/reset-form.css" rel="stylesheet">
<link href="css/base.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/clipboard@2/dist/clipboard.min.js"></script>
<link href="css/snackbar.min.css" rel="stylesheet">
<script src="js/snackbar.min.js"></script>
</head>
<body>
<h1>Geng Shuang <br/>Emulator</h1>
<small class="label">要谴责的国家/地区:</small><input type="text" id="1">
<small class="label">对方干了什么事情:</small><input type="text" id="2">
<div class="actions">
<div class="button clickable" onclick="generate()">外交部发言人耿爽答记者问</div>
<img class="shuffle clickable" onclick="random()" src="assets/shuffle.svg">
</div>
<div class="text-container">
<div id="text"></div>
<img class="copy clickable" src="assets/copy-file.svg" data-clipboard-target="#text">
</div>
<img class="slogan" src="assets/footer.svg">
<p class="about">本实验不带有政治诉求或企图,请勿过度解读 · <a class="clickable" href="https://github.com/fedink/GengShuangEmulator">View on GitHub</a></p>
<script src="js/main.js"></script>
</body>
</html>