I'm having problem finding out how I can use requestAnimationFrame
in a class.
This code is working fine:
window.onload = function () {
var width = 20;
function animation() {
width++;
var element = document.getElementById("box");
element.style.width = width + "px";
requestAnimationFrame(animation);
}
requestAnimationFrame(animation);
};
But when I try putting it into a class, I don't get any result.
class Animation{
width: number = 20;
constructor() {
requestAnimationFrame(this.loop);
}
loop() {
this.width++;
var element = document.getElementById("box");
element.style.width = this.width + "px";
requestAnimationFrame(this.loop);
}
}
window.onload = function () {
var animation = new Animation();
};
Could someone tell me what's wrong here?
bind(this)
, I just read up on it, and know it works. =) Thanks! – Labiovelar