-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
46 lines (42 loc) · 984 Bytes
/
index.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE 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>example</title>
<style>
body {
background-color: #1c1c1c;
color: #ededed;
font-family: monospace;
}
.fancy {
font-size: 2rem;
}
.exit {
animation:fade-out 2.0s;
font-size: 2rem;
}
@keyframes fade-out {
from {opacity:1;}
to {opacity:0;}
}
</style>
</head>
<body>
<div id="app">
<div>we</div>
<div>will</div>
<div>be</div>
<div>removed</div>
</div>
<div id="vnode">
</div>
<script type="module">
// import { runApp } from './example/bench/app.js';
import { runApp } from './example/playground.js';
runApp();
</script>
</body>
</html>