ruffle/web/packages/demo/www/index.html

48 lines
2.0 KiB
HTML
Raw Normal View History

2019-04-25 17:52:22 +00:00
<!DOCTYPE html>
2019-10-06 20:32:33 +00:00
<html data-ruffle-optout>
2020-05-26 18:16:30 +00:00
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2020-05-26 18:16:30 +00:00
<title>Ruffle Web Demo</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato" />
2021-06-11 04:30:50 +00:00
<link rel="icon" href="https://ruffle.rs/assets/favicon-32.png" sizes="32x32">
<link rel="icon" href="https://ruffle.rs/assets/favicon-64.png" sizes="64x64">
<link rel="icon" href="https://ruffle.rs/assets/favicon-180.png" sizes="180x180">
2020-05-26 18:16:30 +00:00
</head>
<body>
<div id="nav">
<div id="title">
<a href="https://ruffle.rs/" target="_blank">
2020-05-26 18:16:30 +00:00
<img
src="https://ruffle.rs/assets/logo.png"
alt="Ruffle"
2021-02-21 20:52:04 +00:00
data-canonical-src="https://ruffle.rs/assets/logo.png" />
2020-05-26 18:16:30 +00:00
</a>
</div>
<div id="file-picker">
<div id="local-file-container">
<span>Local SWF:</span>
2020-12-30 22:27:23 +00:00
<input type="file" accept=".swf,.spl" id="local-file" />
2020-05-26 18:16:30 +00:00
</div>
2021-03-26 15:17:00 +00:00
<div id="sample-swfs-container" class="hidden">
2020-05-26 18:16:30 +00:00
<span id="sample-swfs-label">Sample SWF:</span>
<select id="sample-swfs">
<option value="none">None</option>
<optgroup id="anim-optgroup" label="Animations"></optgroup>
<optgroup id="games-optgroup" label="Games"></optgroup>
2020-05-26 18:16:30 +00:00
</select>
2021-04-15 22:12:05 +00:00
<div id="author-container" class="hidden">
<span>Author: </span><a href="#" target="_blank" id="author"></a>
</div>
2020-05-26 18:16:30 +00:00
</div>
</div>
</div>
2021-01-22 02:16:39 +00:00
<div id="main">
2021-03-26 15:17:00 +00:00
<div id="overlay" class="hidden"></div>
<div id="prompt">Select a demo or drag an SWF</div>
2021-01-22 02:16:39 +00:00
</div>
<script src="index.js"></script>
2020-05-26 18:16:30 +00:00
</body>
</html>