-
Notifications
You must be signed in to change notification settings - Fork 0
/
vmuviewer.html
59 lines (51 loc) · 2.03 KB
/
vmuviewer.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>VMU Viewer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Web as app support -->
<link rel="manifest" href="manifest.json" />
<!-- Original icon from: https://dribbble.com/shots/3385687-Dreamcast-VMU-Icon-Revision -->
<link rel="icon" sizes="192x192" href="images/vmu_icon-192x192.png">
<!-- Navigation bar color -->
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#447AC4">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#447AC4">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#447AC4">
<link rel="stylesheet" type="text/css" href="style.css" />
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> -->
<!-- <link href="//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css" rel="stylesheet"/> -->
<!-- <script src="//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script> -->
<script src="js/sw-register.js"></script>
<script src="js/vmu.js"></script>
<script src="js/vmuviewer.js"></script>
</head>
<body>
<header>VMU Viewer</header>
<main>
<button id="addViewer">Add empty VMU</button>
<template id="vmuviewer">
<div class="vmu">
<input type="file" class="file" />
<button class="download">Download</button>
<table class="elements">
<tr>
<th>Name</th>
<th>Timestamp</th>
<th>Blocks</th>
<th>VM Description</th>
<th>DC Description</th>
<th>Icon</th>
<th>Delete</th>
</tr>
</table>
<canvas class="memorycard"></canvas>
</div>
</template>
</main>
<footer></footer>
</body>
</html>