yoob.Animation opportunities that were missed.
Chris Pressey
10 years ago
157 | 157 |
e.preventDefault();
|
158 | 158 |
});
|
159 | 159 |
|
160 | |
yoob.setUpQuantumAnimationFrame(this);
|
|
160 |
this.animation = (new yoob.Animation()).init({ object: this });
|
|
161 |
this.animation.start();
|
161 | 162 |
};
|
162 | 163 |
};
|
21 | 21 |
</article>
|
22 | 22 |
|
23 | 23 |
</body>
|
|
24 |
<script src="../common-yoob.js-0.6/animation.js"></script>
|
24 | 25 |
<script src="fingerspelling.js"></script>
|
25 | 26 |
<script>
|
26 | 27 |
var canvas = document.getElementById('canvas');
|
75 | 75 |
this.start = function(c) {
|
76 | 76 |
canvas = c;
|
77 | 77 |
ctx = canvas.getContext('2d');
|
78 | |
yoob.setUpQuantumAnimationFrame(this);
|
|
78 |
this.animation = (new yoob.Animation()).init({ object: this });
|
|
79 |
this.animation.start();
|
79 | 80 |
};
|
80 | 81 |
};
|