-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
144 lines (98 loc) · 3.43 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<html>
<head>
<title>Cyclic Vacuum Cannon</title>
<style type="text/css">
body {
padding: 0px;
margin: 0px;
background-color: #333;
}
</style>
</head>
<body onload="new pt.CyclicVacuumCannonApp">
<canvas id="canvas"></canvas>
<script type="text/javascript" src="http://code.createjs.com/easeljs-0.5.0.min.js"></script>
<script type="text/javascript" src="http://code.createjs.com/tweenjs-0.3.0.min.js"></script>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.4.2/underscore-min.js"></script>
<script type="text/javascript">
var c = createjs,
presstube = {},
pt = presstube,
p;
pt.CyclicVacuumCannonApp = function() {
var canvas = document.getElementById("canvas"),
stage = new c.Stage(canvas),
bgRect = new c.Shape,
centeredContainer = new c.Container;
function resize() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
bgRect.graphics.clear().beginFill("555").drawRect(0, 0, canvas.width, canvas.height);
centeredContainer.x = canvas.width / 2;
centeredContainer.y = canvas.height / 2;
}
function spawnNoun() {
var noun = new pt.Noun;
noun.x = Math.random()*200 - Math.random()*200;
noun.y = Math.random()*200 - Math.random()*200;
noun.rotation = Math.random()*30 - Math.random()*30;
centeredContainer.addChild(noun);
// wait 2 seconds, then dematerialize noun
_.delay(function() {
noun.dematerialize();
}, 2000);
}
function onPress() {
spawnNoun();
}
function onTick() {
if (Math.random() < .05) {
spawnNoun();
}
}
resize();
window.onresize = resize;
c.Ticker.setFPS(30);
c.Ticker.addListener(stage);
stage.addChild(bgRect);
stage.addChild(centeredContainer);
bgRect.onPress = onPress;
stage.onTick = onTick;
}
pt.Noun = function() { this.initialize(); };
p = pt.Noun.prototype = new c.Container;
p.Container_initialize = p.initialize;
p.initialize = function() {
this.Container_initialize();
var noun = this,
libraryAnim = new c.BitmapAnimation(pt.Noun.libraryAnimSpriteSheet),
puffAnim = new c.BitmapAnimation(pt.Noun.puffAnimSpriteSheet);
function materialize() {
c.Tween.get(libraryAnim, {onChange: matchPuffFrameToLibraryScale}).to({scaleX: 1, scaleY: 1}, 800, c.Ease.quintIn);
}
function dematerialize() {
c.Tween.get(libraryAnim, {onChange: matchPuffFrameToLibraryScale}).to({scaleX: 0, scaleY: 0}, 800, c.Ease.quintOut).call(onDematerializeComplete);
}
function onDematerializeComplete() {
noun.parent.removeChild(noun);
}
function onPress() {
dematerialize();
}
function matchPuffFrameToLibraryScale() {
var frame = Math.floor(puffAnim.spriteSheet.getNumFrames() * libraryAnim.scaleX);
puffAnim.gotoAndStop(frame);
}
libraryAnim.scaleX = libraryAnim.scaleY = 0;
noun.addChild(libraryAnim);
libraryAnim.gotoAndStop(Math.floor(Math.random() * libraryAnim.spriteSheet.getNumFrames()));
materialize();
noun.onPress = onPress;
noun.addChild(puffAnim);
noun.dematerialize = dematerialize;
}
pt.Noun.libraryAnimSpriteSheet = new c.SpriteSheet({"animations": {"all": [0, 2]}, "images": ["nounLibraryAnim.png"], "frames": {"regY": 42, "height": 90, "regX": 22, "width": 42, "count": 3}});
pt.Noun.puffAnimSpriteSheet = new c.SpriteSheet({"frames": {"height": 103, "count": 14, "regY": 50, "width": 99, "regX": 50}, "animations": {"all": [0, 13]}, "images": ["nounPuffAnim.png"]});
</script>
</body>
</html>