windows95/src/renderer/index.html

75 lines
2.6 KiB
HTML
Raw Normal View History

2018-08-23 04:51:31 +02:00
<!DOCTYPE html>
2019-07-24 17:57:23 +02:00
<html lang="en" class="windows95">
2018-08-23 07:03:28 +02:00
2018-08-23 04:51:31 +02:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Windows</title>
<script src="./lib/libv86.js"></script>
2019-07-24 17:57:23 +02:00
<link rel="stylesheet" href="style/vendor/95css.css">
2018-08-23 04:51:31 +02:00
<link rel="stylesheet" href="style/style.css">
</head>
2018-08-23 07:03:28 +02:00
2018-08-23 04:51:31 +02:00
<body class="paused">
2018-08-25 08:01:33 +02:00
<div id="status">
Disk: <span id="disk-status">Idle</span>
| CPU Speed: <span id="cpu-status">0</span>
2019-02-03 22:49:09 +01:00
| <a href="#" id="toggle-status">Hide</a>
2018-08-25 08:01:33 +02:00
</div>
2019-08-04 17:45:18 +02:00
<div id="setup">
<section id="section-start" class="visible">
<div class="btn btn-start" id="win95">
2018-08-23 07:03:28 +02:00
Start Windows 95
<br />
<small>Hit ESC to lock or unlock your mouse</small>
</div>
2019-08-04 17:45:18 +02:00
</section>
<section id="section-floppy">
<div class="card">
<div class="card-header">
<h2 class="card-title">Floppy Drive</h2>
</div class="card-header">
<div class="card-body">
2019-08-19 17:41:14 +02:00
<input id="floppy-input" type='file' style="display: none">
2019-08-04 17:45:18 +02:00
<p>windows95 comes with a virtual floppy drive. If you have floppy disk images in the "img" format, you can
mount them here.</p>
<p>Back in the 90s and before CD-ROM became a popular format, software was typically distributed on floppy
disks. Some developers have since released their apps or games for free, usually on virtual floppy disks
using the "img" format.</p>
<p>Once you've mounted a disk image, you might have to reboot your virtual windows95 machine from scratch.</p>
<p id="floppy-path">No floppy mounted</p>
<button id="floppy-select" class="btn">Mount floppy disk</button>
<button id="floppy-reboot" class="btn">Reboot from scratch</button>
</div>
</div>
</section>
<section id="section-state">
2019-07-24 17:57:23 +02:00
2019-08-04 17:45:18 +02:00
</section>
<section id="section-disk">
2019-07-24 17:57:23 +02:00
2019-08-04 17:45:18 +02:00
</section>
2019-07-24 17:57:23 +02:00
2019-08-04 17:45:18 +02:00
<nav class="nav nav-bottom">
<a href="#" id="start" class="nav-logo">
<img src="style/start.png" alt=""><span>Start</span>
</a>
<div class="nav-menu">
<a href="#" id="floppy" class="nav-link">Floppy Disk</a>
<a href="#" id="state" class="nav-link">Reset Machine</a>
<a href="#" id="disk" class="nav-link">Modify C: Drive</a>
</div>
</nav>
</div>
2018-08-23 04:51:31 +02:00
<div id="emulator" style="height: 100vh; width: 100vw">
<div style="white-space: pre; font: 14px monospace; line-height: 14px"></div>
<canvas style="display: none"></canvas>
</div>
2018-08-25 05:55:03 +02:00
<script type="module">
import("es6://renderer.js")
2018-08-23 07:03:28 +02:00
</script>
2018-08-23 04:51:31 +02:00
</body>
2018-08-23 07:03:28 +02:00
</html>