slint/examples/gallery/wasm/index.html
Simon Hausmann d17bfdc534 Include the widget gallery in the README
And beef up the html a little, same as with the printer demo.
2020-08-13 19:01:55 +02:00

23 lines
No EOL
570 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>SixtyFPS UI Widget Gallery Demo (Web Assembly version)</title>
</head>
<style>
canvas {
border: solid;
}
</style>
<body>
<p>This is the SixtyFPS UI Widget Gallery Demo compiled to WebAssembly. It demonstrates different re-usable graphical
elements.</p>
<canvas id="canvas" width="640" height="480"></canvas>
<p><a href="https://github.com/sixtyfpsui/sixtyfps/blob/master/examples/gallery/gallery.60">View Source
Code</a></a></p>
<script src="index.js"></script>
</body>
</html>