-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdisplay.html
More file actions
31 lines (31 loc) · 946 Bytes
/
display.html
File metadata and controls
31 lines (31 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
mpy-script { display: none; }
script-mpy { display: block; }
</style>
<script type="module">
import { define } from '/dist/index.js';
define('mpy', {
interpreter: 'micropython'
});
</script>
</head>
<body>
<mpy-script worker>
from polyscript import xworker, target
xworker.window.document.getElementById(target).textContent = "Hello from Worker"
</mpy-script>
<script type="mpy" worker>
from polyscript import xworker, target
xworker.window.document.getElementById(target).textContent = "Hello from Worker"
</script>
<script type="micropython" worker>
from polyscript import xworker, target
xworker.window.document.getElementById(target).textContent = "Hello from Worker"
</script>
</body>
</html>