gctGenerator/index.html

45 lines
1.9 KiB
HTML
Raw Normal View History

2017-09-28 22:21:01 +09:00
<!DOCTYPE HTML>
2017-09-28 01:14:25 +09:00
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
2017-09-28 01:19:07 +09:00
<link rel="stylesheet" href="style/style.css">
2017-10-11 03:48:58 +09:00
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
2017-09-28 22:21:01 +09:00
<title>SMS GCT Generator</title>
2017-10-19 04:19:45 +09:00
<script language="javascript" src="gctGenerator.js"></script>
2017-09-28 01:14:25 +09:00
</head>
2017-10-19 04:19:45 +09:00
<body onload="updateChangelog()">
2017-09-28 22:21:01 +09:00
<div style="width: 100%; overflow: hidden;">
<div style="width: 510px; float: left;">
2017-10-19 04:19:45 +09:00
<select id="gameID" class="selectionHeader" onchange="updateCodelist()" autocomplete="off">
2017-09-28 22:21:01 +09:00
<option selected disabled hidden>Choose Version</option>
<option value="GMSE01">GMSE01 (NTSC-U)</option>
<option value="GMSJ01">GMSJ01 (NTSC-J 1.0)</option>
<option value="GMSP01">GMSP01 (PAL)</option>
</select>
2017-10-19 04:19:45 +09:00
<ul id="checkList">
2017-09-28 22:21:01 +09:00
</ul>
<button id="downloadButton" onclick="generateGCT()" style="visibility:hidden;">Download</button>
</div>
<div style="margin-left: 530px;">
2017-10-19 04:19:45 +09:00
<div id="descriptionBox" class="framed">
<p><h2>Mario Sunshine Cheatfile Generator</h2></p>
2017-10-29 12:31:59 +09:00
<p><i>Authors: <a href="https://twitter.com/psychonauter">Psy</a> & <a href="https://twitter.com/srlmilk">Milk</a><br />Last Updated: Oct 29, 2017</i></p>
<p>Description:<br /> This is a cheatfile generator for SMS Speedrun practice. A guide on how to use the generator and cheatfiles on your Wii can be found here: <a href="guide.html">Guide</a></p>
2017-10-19 04:19:45 +09:00
<h4>Changelog:</h4>
<p id="changelog"></p>
2017-09-28 22:21:01 +09:00
</div>
</div>
</div>
2017-09-28 01:14:25 +09:00
</body>
<script language="javascript">
document.getElementById("checkList").addEventListener("click", function(ev) {
if (ev.target && ev.target.nodeName == "LI") {
ev.target.classList.toggle("checked");
}
});
</script>
2017-09-27 11:08:01 +09:00
2017-10-27 23:08:27 +09:00
</html>