-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (79 loc) · 1.75 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<title>Kemu</title>
<style>
html,
body {
margin: 0;
padding: 0;
height: 100%;
font-family: Helvetica Neue For Number, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.25;
}
p {
margin: 15px 0;
}
.app {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
}
.n {
color: #333333;
font-size: 2rem;
}
.a,
.x {
color: #999999;
font-size: 0.875rem;
}
.x {
display: none;
}
.w:hover .a {
display: none;
}
.w:hover .x {
display: block;
}
.x button {
margin-left: 0.25em;
padding: 0;
background: none;
border: none;
cursor: pointer;
color: #696969;
}
</style>
</head>
<body>
<div class="app">
<p class="n">Kemu</p>
<div class="w">
<p class="a" id="a">aGlAa2VtdS5tZQ==</p>
<p class="x">
<span class="b" id="b"></span>
<button id="cpy">Copy</button>
</p>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/clipboard@2.0.8/dist/clipboard.min.js"></script>
<script>
const text = document.getElementById('a').innerText;
const b = document.getElementById('b');
const value = atob(text);
b.innerText = value;
new ClipboardJS('#cpy', {
text: function (trigger) {
return value;
},
});
</script>
</body>
</html>