Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to animate an image going from the left side of the page to the right and then back again.

It is very similar to this example:

http://www.html5canvastutorials.com/kineticjs/html5-canvas-kineticjs-animate-position-tutorial/

I have tried my application on both mobile and desktop and I get a very different framerate. Is there any way to set the framerate for simple animations like this so that the time for the image to move from on side to the other always will be the same on all devices and browsers?

I saw that you can set it for Sprites but not for animations.

share|improve this question

1 Answer

up vote 1 down vote accepted

See:

https://github.com/mrdoob/three.js/issues/642

Is wanting to control the FPS of my animation a good reason to continue using setTimeout in stead of requestAnimationFrame?

requestAnimationFrame at a limited framerate

You're basically looking at having to over-ride the built-in requestAnimationFrame functionality (which is made to make animations as fast as possible), and creating timers instead, but currently, no functionality built into kineticjs to set framerate for an animation.

You can go into the .js file you download from the kineticjs site and mess with this code:

Kinetic.Animation._animationLoop = function() {
    var that = this;
    if(this.animations.length > 0) {
        this._runFrames();
        Kinetic.Animation.requestAnimFrame(function() {
            that._animationLoop();
        });
    }
    else {
        this.animRunning = false;
    }
};
Kinetic.Animation._handleAnimation = function() {
    var that = this;
    if(!this.animRunning) {
        this.animRunning = true;
        that._animationLoop();
    }
};
RAF = (function() {
    return window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.oRequestAnimationFrame || window.msRequestAnimationFrame || Kinetic.Animation.fixedRequestAnimFrame;
})();

Kinetic.Animation.requestAnimFrame = function(callback) {
    var raf = Kinetic.DD && Kinetic.DD.moving ? this.fixedRequestAnimFrame : RAF;
    raf(callback);
};
}
share|improve this answer
but the short answer is no. – EliteOctagon Jan 24 at 14:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.