ruffle/web/www/index.html

30 lines
625 B
HTML
Raw Normal View History

2019-04-25 17:52:22 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
2019-04-29 20:24:29 +00:00
<title>Fluster</title>
2019-04-25 17:52:22 +00:00
<style>
body {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
2019-04-29 20:24:29 +00:00
Remote SWF URL: <input type="text" id="remote-input" value="sbemail199.swf"><input type="submit"
id="load-remote-button" value="Load">
Local SWF: <input type="file" id="file-input">
2019-04-25 17:52:22 +00:00
<canvas id="fluster-canvas"></canvas>
<script src="./bootstrap.js"></script>
</body>
</html>