We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90dfee9 commit be3368dCopy full SHA for be3368d
static/index.html
@@ -9,7 +9,8 @@
9
body {
10
11
background-color: #000000;
12
- margin: 0px;
+ margin: 0;
13
+ padding: 0;
14
overflow: hidden;
15
16
}
@@ -180,11 +181,9 @@
180
181
return;
182
183
- var effect = document.createElement( 'div' );
184
- document.body.appendChild( effect );
185
-
186
canvas = document.createElement( 'canvas' );
187
- effect.appendChild( canvas );
+ canvas.style.display = 'block';
+ document.body.appendChild( canvas );
188
189
//
190
0 commit comments