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

48 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html data-ruffle-optout>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Ruffle Web Demo</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato" />
<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">
</head>
<body>
<div id="nav">
<div id="title">
<a href="https://ruffle.rs/" target="_blank">
<img
src="https://ruffle.rs/assets/logo.svg"
alt="Ruffle"
data-canonical-src="https://ruffle.rs/assets/logo.svg" />
</a>
</div>
<div id="file-picker">
<div id="local-file-container">
<span>Local SWF:</span>
<input type="file" accept=".swf,.spl" id="local-file" />
</div>
<div id="sample-swfs-container" class="hidden">
<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>
</select>
<div id="author-container" class="hidden">
<span>Author: </span><a href="#" target="_blank" id="author"></a>
</div>
</div>
</div>
</div>
<div id="main">
<div id="overlay" class="hidden"></div>
<div id="prompt">Select a demo or drag an SWF</div>
</div>
<script src="index.js"></script>
</body>
</html>