This repository was archived by the owner on Oct 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (35 loc) · 1.32 KB
/
Copy pathindex.html
File metadata and controls
47 lines (35 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" href="contextmenu.css" />
</head>
<body>
<center>
<img width="100%" class="backgroudImage" src="assets/background/background.png">
<!-- loading animation -->
<!---
<svg xmlns="http://www.w3.org/2000/svg" width="169" height="169">
<circle fill="#076BFF" stroke="#076BFF" stroke-width="5" cx="84" cy="84" r="20" />
<circle fill="#076BFF" stroke="#076BFF" stroke-width="5" cx="35" cy="113" r="9">
<animateTransform attributeName="transform" begin="0s" dur="1.5s" type="rotate" from="0 84 84" to="360 84 84"
repeatCount="indefinite" />
</circle>
<ellipse fill="none" stroke="#076BFF" stroke-width="6" cx="84" cy="84" rx="58" ry="57" />
</svg>-->
</center>
<div id="view">
<ul class="resultList" id="resultList">
<!-- DISPLAY LIST ITEMS HERE -->
</ul>
</div>
<textarea class="editor" type="text" id="editor"></textarea>
<div class="statusBar" id="statusBar"></div>
<!-- context menu -->
<!-- initially hidden right-click menu -->
<div class="hide" id="rmenu">
</div>
<script src="index.js"></script>
</body>
</html>