-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpopup.html
42 lines (35 loc) · 1.15 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css">
<title>Popup</title>
<style type="text/css">
i{font-size: 25px;}
.rotate-anime {
animation: rotate-anime 2s linear infinite;
}
@keyframes rotate-anime {
0% {transform: rotate(0);}
100% {transform: rotate(360deg);}
}
</style>
</head>
<body>
<div align="center">
<i class="fas fa-circle-notch" id="i1"></i>
<h5 style="width:120px;word-wrap: break-word;" id="h5_1">
CURRENT FILE NAME
</h5>
</div>
<div align="center">
<progress id="prog1" name="file" max="100" value="0">
</progress>
</div>
<div align="center">
<button id="run_button">Sort by Name</button>
</div>
<script type="text/javascript" charset="utf-8" src="popup.js">
</script>
</body>
</html>