35 lines
897 B
HTML
35 lines
897 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript" src="./thermion_dart.js"></script>
|
|
<script type="module">
|
|
try {
|
|
window.thermion_dart = await thermion_dart();
|
|
} catch(err) {
|
|
console.error(err);
|
|
}
|
|
const script = document.createElement('script')
|
|
script.src = 'example.dart.js'
|
|
document.head.append(script);
|
|
</script>
|
|
<style>
|
|
html, body {
|
|
margin:0;
|
|
padding:0;
|
|
}
|
|
canvas {
|
|
position:absolute;
|
|
left:0;
|
|
right:0;
|
|
top:0;
|
|
bottom:0;
|
|
width:100%;
|
|
height:100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<canvas id="thermion_canvas"></canvas>
|
|
</body>
|
|
</html> |