slint/examples/printerdemo/wasm/static/index.html
2020-10-29 11:06:06 +01:00

28 lines
870 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>SixtyFPS UI Printer Demo (Web Assembly version)</title>
<style>
canvas {
border: solid;
}
</style>
</head>
<body>
<p>This is the SixtyFPS UI Printer Demo compiled to WebAssembly. It simulates the touch user interface of
the advanced "Print Machine 2000", without actually printing anything.</p>
<canvas id="canvas" width="640" height="480" unselectable="on"></canvas>
<p>
<a href="https://github.com/sixtyfpsui/sixtyfps/blob/master/examples/printerdemo/ui/printerdemo.60">
View Source Code on GitHub</a> -
<a href="https://sixtyfps.io/editor?load_url=https://raw.githubusercontent.com/sixtyfpsui/sixtyfps/master/examples/printerdemo/ui/printerdemo.60">
Edit in the online code editor
</a>
</p>
<script src="index.js"></script>
</body>
</html>