-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
32 lines (32 loc) · 870 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
<head>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.5.0/styles/ascetic.min.css">
<style>
body {
margin: 0;
padding: 0;
}
.title {
margin-top: 1%;
margin-left: 15%;
font-size: 200%;
}
#code {
margin-left: 15%;
word-wrap: break-word;
z-index: -1;
}
.view {
position: fixed;
width: 100vw;
height: 100vh;
top: 0;
left: 0;
}
</style>
</head>
<body>
<div class="title">Example for <a href="https://github.com/davidfig/pixi-ease/">github.com/davidfig/pixi-ease/</a></div>
<pre><code class="javascript" id="code"></code></pre>
<canvas class="view"></canvas>
<script src="index.js"></script>
</body>