vnIIc/index.html

74 lines
2.0 KiB
HTML
Raw Normal View History

2018-10-27 23:46:51 +00:00
<!doctype html>
2018-10-28 05:42:31 +00:00
<title>vnIIc</title>
2018-10-28 21:10:50 +00:00
<link rel=icon hres="res/icon128.png">
<link rel=stylesheet href="https://fonts.googleapis.com/css?family=Audiowide">
2018-10-27 23:46:51 +00:00
<style>
2018-10-28 05:42:31 +00:00
h1, h2, h3 { font-family: Audiowide; }
h1 { font-size: 64px; margin: 0;}
2018-10-28 21:10:50 +00:00
h2 { margin-bottom: 4px; }
p { margin-top: 4px; }
#quant { border: 8px gray ridge; padding: 10px; background-color: #202020; }
2018-10-28 05:42:31 +00:00
#title { background-color: #d0d0d0; height: 128px; margin: 20px 0; padding: 10px; }
2018-10-28 21:10:50 +00:00
body {
font-family: sans-serif;
margin: 0 auto;
width: 600px;
}
section { font-size: 80%; }
2018-10-27 23:46:51 +00:00
</style>
2018-10-28 05:42:31 +00:00
<div id=title>
<h1>vn//c
<img style="float: left; margin-right: 24px;" src="res/icon128.png">
</h1>
<div>
Desktop streaming to an Apple II with Super Serial Card
</div>
</div>
2018-10-28 01:22:10 +00:00
<canvas id=quant width=140 height=192 style="width: 280px; height: 192px;"></canvas>
2018-10-28 05:42:31 +00:00
<div>
<button id=start>Start Capturing</button>
2018-10-28 01:22:10 +00:00
<button id=save>Save</button>
2018-10-28 03:40:01 +00:00
<button id=bootstrap>Bootstrap</button>
2018-10-28 21:10:50 +00:00
<input id=dither type=range min=0 max=100 value=90>
2018-10-28 05:42:31 +00:00
</div>
2018-10-27 23:46:51 +00:00
2018-10-28 03:18:13 +00:00
<script src="server.js"></script>
2018-10-28 05:42:31 +00:00
2018-10-28 21:10:50 +00:00
<section id=about>
2018-10-28 05:42:31 +00:00
<h2>About vnIIc</h2>
<p>
The name "vnIIc" is a play on <a target=_blank
href="https://en.wikipedia.org/wiki/Virtual_Network_Computing">VNC
("Virtual Network Computing")</a> and the <a target=_blank
href="https://en.wikipedia.org/wiki/Apple_IIc">Apple IIc</a> for humor
purposes, but the application does not use the VNC or <a target=_blank
href="https://en.wikipedia.org/wiki/RFB_protocol">RFB</a> protocols.
Apple IIc is a trademark of Apple Computer, Inc. VNC and RFB are
registered trademarks of RealVNC Ltd.
</p>
<p>
The first version was a Windows application, written in 2008. See a <a
target=_blank href="https://www.youtube.com/watch?v=vAZHJa91JHk">video
demonstration on YouTube</a>.
</p>
<p>
Thanks to: Michael J. Mahon, Nick Westgate, David Wilson, David
Schmenk, David Schmidt and the rest of the <a target=_blank
href="https://groups.google.com/forum/#!forum/comp.sys.apple2.programmer">comp.sys.apple2.programmer</a>
gang!
</p>
2018-10-28 21:10:50 +00:00
</section>
2018-10-28 05:42:31 +00:00
</div>