Skip to content

Commit af841cd

Browse files
Added mixer example (needs updating to codepen version when completed)
1 parent e587e5b commit af841cd

18 files changed

+470
-0
lines changed
3.82 KB
Binary file not shown.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
A Pen created at CodePen.io. You can find this one at https://codepen.io/mwmwmw/pen/d8eb06a701bbb0bb2b858d072c9bbb66.
2+
3+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
html, body {
2+
margin: 0;
3+
padding: 0;
4+
overflow: hidden;
5+
background-color: "#101214";
6+
}
7+
8+
canvas {
9+
background-color: "#101214";
10+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!DOCTYPE html>
2+
<html lang="en" >
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<title>CJS Mixer</title>
7+
8+
9+
<link rel='stylesheet' href='https://lab.gskinner.com/content/assets/template.css'>
10+
11+
<link rel="stylesheet" href="css/style.css">
12+
13+
14+
</head>
15+
16+
<body>
17+
18+
<canvas id="canvas"></canvas>
19+
<script src='https://code.createjs.com/1.0.0/createjs.min.js'></script>
20+
<script src='https://lab.gskinner.com/content/assets/template.min.js'></script>
21+
22+
23+
24+
<script src="js/index.js"></script>
25+
26+
27+
28+
29+
</body>
30+
31+
</html>

0 commit comments

Comments
 (0)