-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpsxmcviewer.html
60 lines (52 loc) · 2.11 KB
/
psxmcviewer.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>PSX Memory Card 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://www.deviantart.com/blueamnesiac/art/Sony-PlayStation-Memory-Card-431081607 -->
<link rel="icon" sizes="192x192" href="images/psxmc_icon-192x192.png">
<!-- Navigation bar color -->
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#AAAAAA">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#AAAAAA">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#AAAAAA">
<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/jistounicode.js"></script>
<script src="js/psxmc.js"></script>
<script src="js/psxmcviewer.js"></script>
</head>
<body>
<header>PSX Memory Card Viewer</header>
<main>
<button id="addViewer">Add empty memory card</button>
<template id="psxmcviewer">
<div>
<input type="file" class="file" />
<button class="download">Download</button>
<table class="elements">
<tr>
<th>Region</th>
<th>Game ID</th>
<th>File Name</th>
<th>Name</th>
<th>Size</th>
<th>Icon</th>
<th>Delete</th>
</tr>
</table>
<canvas class="memorycard"></canvas>
</div>
</template>
</main>
<footer></footer>
</body>
</html>