pxt-calliope/sim/public/simulator.html
2021-11-25 17:27:39 +01:00

41 lines
947 B
HTML

<!doctype html>
<html lang="en" data-manifest="" data-framework="typescript">
<head>
<meta charset="utf-8">
<title>BBC micro:bit simulator</title>
<style>
html {
height: 100%;
width: 100%;
overflow: hidden;
}
body {
height: 100%;
width:100%;
padding: 0;
overflow: hidden;
margin: 0;
}
</style>
<script src="/cdn/pxtsim.js"></script>
<script src="/sim/sim.js"></script>
<script>
pxsim.soundExpressionFiles = {
"giggle": "/sim/sounds/giggle.wav",
"happy": "/sim/sounds/happy.wav",
"hello": "/sim/sounds/hello.wav",
"mysterious": "/sim/sounds/mysterious.wav",
"sad": "/sim/sounds/sad.wav",
"slide": "/sim/sounds/slide.wav",
"soaring": "/sim/sounds/soaring.wav",
"spring": "/sim/sounds/spring.wav",
"twinkle": "/sim/sounds/twinkle.wav",
"yawn": "/sim/sounds/yawn.wav"
}
</script>
</head>
<body>
</body>