springroll-container
Version:
The iframe controller for interacting with SpringRoll applications
30 lines (27 loc) • 608 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
.test {
width: 5rem;
height: 5rem;
background-color: red;
}
</style>
</head>
<body>
<script type="module">
import { Bellhop } from '/js/client.js';
const bellhop = new Bellhop();
bellhop.respond('sendLater', 1);
bellhop.respond("highscore", 10000);
bellhop.connect();
</script>
<div class="test">
</div>
</body>
</html>