2018-08-24 03:58:35 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>8bitworkshop IDE</title>
|
2020-09-07 21:09:49 +00:00
|
|
|
<meta name="googlebot" content="noindex" />
|
|
|
|
<meta name="viewport" content="width=700, initial-scale=1, user-scalable=no">
|
2018-08-24 03:58:35 +00:00
|
|
|
<style type="text/css" media="screen">
|
|
|
|
#emulator {
|
|
|
|
position:absolute;
|
|
|
|
left:0;
|
|
|
|
top:0;
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2019-05-21 20:49:48 +00:00
|
|
|
#emuscreen {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
2018-08-24 03:58:35 +00:00
|
|
|
.emuvideo {
|
2020-07-09 12:03:09 +00:00
|
|
|
width: calc(100% - 70px);
|
2018-08-24 03:58:35 +00:00
|
|
|
border-radius:20px;
|
|
|
|
border: 4px solid #222;
|
|
|
|
outline-color: #666;
|
|
|
|
padding: 30px;
|
|
|
|
background: #000;
|
|
|
|
}
|
2019-08-22 14:30:33 +00:00
|
|
|
.emuvideo:focus {
|
|
|
|
outline:none;
|
|
|
|
border-color:#888;
|
|
|
|
}
|
2018-08-24 03:58:35 +00:00
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
|
|
|
|
if (window.location.host.endsWith('8bitworkshop.com')) {
|
|
|
|
ga('create', 'UA-54497476-9', 'auto');
|
|
|
|
ga('set', 'anonymizeIp', true);
|
|
|
|
ga('send', 'pageview');
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<script async src='https://www.google-analytics.com/analytics.js'></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="emulator">
|
2019-05-21 17:06:48 +00:00
|
|
|
<!-- emulator video -->
|
|
|
|
<div id="emuscreen">
|
2020-09-07 21:09:49 +00:00
|
|
|
<div id="javatari-div" style="margin:10px; display:none">
|
|
|
|
<div id="javatari-screen" style="margin: 0 auto; box-shadow: 2px 2px 10px rgb(60, 60, 60);"></div>
|
|
|
|
<div id="javatari-console-panel" style="margin: 0 auto; box-shadow: 2px 2px 10px rgb(60, 60, 60);"></div>
|
|
|
|
</div>
|
2018-08-24 03:58:35 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-07-16 19:47:28 +00:00
|
|
|
<script src="jquery/jquery.min.js"></script>
|
2018-08-24 03:58:35 +00:00
|
|
|
|
|
|
|
<script src="tss/js/tss/PsgDeviceChannel.js"></script>
|
|
|
|
<script src="tss/js/tss/MasterChannel.js"></script>
|
|
|
|
<script src="tss/js/tss/AudioLooper.js"></script>
|
|
|
|
<script src="tss/js/Log.js"></script>
|
|
|
|
<script src="lib/liblzg.js"></script>
|
|
|
|
|
2021-08-01 18:03:50 +00:00
|
|
|
<script src="gen/embedui.js" type="module"></script>
|
2018-08-24 03:58:35 +00:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|