HTML5 window.requestAnimationFrame API is an alternative to setTimeout for animations or applications running in a loop.

learn more… | top users | synonyms

0
votes
0answers
17 views

Frame rate when using requestAnimationFrame()

I am trying to explore animation with javascript and decided to make a small game that just involved getting a player to jump over obstacles as they came towards them. It seems to work ok (although ...
5
votes
1answer
71 views

Achieve somewhat stable framerate with requestAnimationFrame?

I am playing around with the requestAnimationFrame but I get very jerky animations in any other browser than Chrome. I have an object that looks like this: var object = { var lastrender = (new ...
0
votes
2answers
31 views

Setting correct this-value in requestAnimationFrame

I have an app-object constructer that looks like this: var app = function(loadedsettings) { return { init: function() { this.loop(); }, loop: ...
0
votes
1answer
14 views

cycle through animations on click

starting with a single image, I have three animations I want it to cycle through each time the image is clicked. I created this switch: function switcher() { // counts to 4 then resets to 0 x = x+1 ...
0
votes
0answers
82 views

Should I use window.webkitRequestAnimationFrame instead of setInterval?

I am developing a game in JavaScript and I am confused on which one I should use - window.webkitRequestAnimationFrame or setInterval for moving my game characters.
0
votes
0answers
14 views

requestAnimationFrame polyfill: what's the element parameter for?

I am using the requestAnimationFrame polyfill by Erik Möller (fixes from Paul Irish and Tino Zijdel) and I was wondering what is the second parameter called "element" for. Here is the code: ...
1
vote
0answers
71 views

requestAnimationFrame - browser support issues

http://jsfiddle.net/xwF6E/14/ Above is a JSfiddle of an animation i'm trying to create. It's works 100% fine in Chrome, however having various issues in other browsers. It appears that in firefox it ...
0
votes
1answer
47 views

GameDev: Javascript

Hi guys out there of my computer ;-) I am trying to develope for myself a game with HTML 5 & JS & CSS. In many tutorials i saw the method "requestAnimationFrame". I copied and tried to ...
0
votes
0answers
29 views

Proper way to pause animations when not in view

I'm wondering whether there is a proper way to pause requestAnimationFrame animations when the user has scrolled and the animation is not in the view anymore? requestAnimationFrame does this ...
1
vote
0answers
56 views

Does d3's transitions and animations use requestAnimationFrame?

I'm trying to figure out if d3's default animations use requestAnimationFrame for the callback already or if I need to do it myself. For example, I have defined a custom tween that calls a redraw ...
0
votes
1answer
63 views

Is it necessary to cancel an outstanding requestAnimationFrame before calling it again?

I'm looking at the emerging standards for requestAnimationFrame and cancelAnimationFrame http://paulirish.com/2011/requestanimationframe-for-smart-animating/ and the various polyfills provided ...
2
votes
1answer
58 views

Calculating the AnalyserNode's smoothingTimeConstant

I am using the Web Audio API to display a visualization of the audio being played. I have an <audio> element that is controlling the playback, I then hook it up to the Web Audio API with by ...
0
votes
2answers
85 views

Firefox 19 and RequestAnimationFrame not working

I'm trying to make this demo work on Firefox 19 but looks like RequestAnimationFrame is not beeing called properly. http://awardwinningfjords.com/projects/sequence/apple.html All other browsers and ...
0
votes
1answer
119 views

window.requestAnimationFrame() using it right?

I'm trying to create an animation on touchmove but I'm kind of worried about how much it will ask of the hardware of the device so I tried to use the requestAnimationFrame but I have no idea if I'm ...
0
votes
1answer
40 views

Opera Out Of memory error with Canvas / kinetic

I have a script which I have built using requestAnimationFrmae. Code on pastebin here In chrome it works beautifully. Smooth and perfect. However in FF, Opera and Safari its teribbly jerky. I ...
0
votes
0answers
140 views

Simple Canvas Animation Slow in Firefox (even using requestanimationframe)

Need some help guys. I've got an animation that I've distilled down to its simplest form, and it's still really slow in FF (all versions). It absolutely flies in IE, Safari, and Chrome. Really smooth, ...
0
votes
1answer
196 views

Firefox 19: Erratic frame rate using requestAnimationFrame and HTML5 canvas. FPS is over 60

I am developing a game using HTML5 canvas, so I have the game loop that I call using requestAnimationFrame. When I use Chrome or IE it works fine, steady 60 fps and smooth as it should. Issues start ...
0
votes
0answers
128 views

Change CSS translate on mousemove – performance in Webkit browsers is bad

I have written a jQuery plugin which basically moves relatively big pngs (with alpha) through the CSS property transform: translate() depending on cursor-position. The plugin performance is quite good ...
0
votes
1answer
94 views

webGL unresponsive script with requestAnimationFrame

Hi, I have a problem with webgl and using requestAnimationFrame, if i continue in debug the animation is fine but as soon as i let the script run freely i get an unresponsive script error from the ...
0
votes
1answer
121 views

How to measure the performance of CSS transitions and animations

I want to compare the performance of jQuery's animate function and pure CSS3 transitions. I've found out that there is a requestAnimationFrame API to measure the performance but it seems that it can ...
0
votes
1answer
85 views

Why is canvas working in chrome, but not firefox?

I'm developing a website that utilizes parallax scrolling. It looks beautiful in chrome, but none of the images i'd like to draw to the canvas are rendering in firefox. I am flummoxed. Here is the ...
0
votes
0answers
90 views

Using canvas and requestAnimationFrame works in Chrome, but not Firefox

I'm building a web page with parallax-scrolling by way of the HTML5 canvas element. It works beautifully in chrome, but the canvas simply isn't working in firefox. Is there anything in my javascript ...
0
votes
0answers
26 views

TYPE_MISMATCH_ERR when using requestAnimationFrame

I have the following code: window.requestAnimationFrame = (function() { return window.requestAnimationFrame || window.webkitRequestAnimationFrame || ...
0
votes
1answer
214 views

Animate line drawing in canvas using request animation frame

I am struggling to create line drawing animation using request animation frame. While I was using setInterval function everything was working fine, but I read somewhere that request ani frame is much ...
0
votes
1answer
157 views

requestAnimationFrame flickering issue in Firefox

I am trying to animate a circle across the canvas in diagonal direction. I am using requestanimationframe. It works smoothly in all browsers but not in firefox. There is constant flickering while the ...
1
vote
0answers
87 views

jQuery debounced slideshow skips slides

I have written a plugin for my personal homepage, which is supposed to scroll through a series of elements, snapping to each elements offsetTop. I am using requestanimationframe to debounce the ...
0
votes
1answer
42 views

is requestAnimationFrame run concurrently with other scripts?

does requestAnimationFrame run the functions queued up on it concurrently with other normally run javascript, i.e. from user input or from setTimeout/setInterval?
0
votes
0answers
134 views

Raphael: how to create delayed animation with a callback?

Here's some code illustrating the problem: var myPaper = Raphael('container', '800', '600'); var circ1 = myPaper.circle(50, 50, 40); var circ2 = myPaper.circle(150, 50, 40); var circ3 = ...
2
votes
1answer
177 views

jQuery animate scrollTop vs requestAnimationFrame - Performance

If I have a page with lots of images with lots of CSS effects and CSS animations applied to them, would I get a performance gain from using window.scrollTo in a requestAnimationFrame loop vs using ...
0
votes
1answer
135 views

requestAnimationFrame running slow on weak machines. Work around?

So, I am doing an animation (Not on a website/webpage!), that uses Javascript. For the animation I use requestAnimationFrame instead of setInterval, as setInterval did not work well enough for what I ...
1
vote
2answers
545 views

Animation, FPS, and KineticJS

So I have a little game of a ball moving around on the screen and I would like to calculate the FPS. I am using KineticJS (4.3.1) which utilizes requestAnimationFrame under the hood. var anim = ...
0
votes
1answer
106 views

$(window).scroll in vanilla Javascript

1)Whats the equivalent of the following in plain JS ? $(window).scroll(function() { }); 2)i'm also looking to animate scroll eg: $('html, body').animate({scrollTop:1750}, 'slow'); Should i be ...
1
vote
2answers
114 views

requestAnimation frame error

This following is causing an error (FF, Chrome, and ?): JSFiddle recreation Engine.prototype.requestAnimationFrame = window.requestAnimationFrame || window.webkitRequestAnimationFrame || ...
5
votes
1answer
565 views

requestAnimationFrame is passing unexpected parameters in IE10

So I've been a good net citizen, using feature detection to see whether the browser supports requestAnimationFrame and only fall back to a setTimeout-based solution otherwise (something around the ...
0
votes
1answer
696 views

setTimeout or setInterval or requestAnimationFrame

For HTML5 games,with canvas animation for mobile devices. I'm facing some performance issues which differ the speed between each device and the others. requestAnimationFrame speed the animation of ...
0
votes
1answer
120 views

jQuery requestAnimationFrame disable pause on losing browser focus

I am building a jQuery app using animation. Currently the requestAnimationFrame API pauses the animating if I minimize my browser or change browser tab, then when I come back to my application it ...
0
votes
1answer
117 views

'reqAnimFrame' function in Opera

I tried to run the example: http://tutorials.jenkov.com/html5-canvas/animation.html. But it gives me following error on Opera 12+: Uncaught exception: TypeError: 'reqAnimFrame' is not a function. ...
2
votes
1answer
265 views

When to use requestAnimationFrame?

Having discovered requestAnimationFrame just a moment ago, I have dived into all the information I could find about it. To name just a few of the resources I came across in case there are others ...
1
vote
2answers
75 views

Jittery animation using animationFrame

I whipped up a simple little spinner widget based on the Windows 8 loading animation, and I haven't been able to figure out why each dot appears to jitter slightly. I've tried various things to ...
8
votes
2answers
298 views

How can I force images to decode on load?

I'm building a site that does parallax scrolling with requestAnimationFrame. There are multiple sections, each with a full-sized background image and some mid- and foreground images as well. I've ...
1
vote
4answers
485 views

Up to date polyfill for requestAnimationFrame

http://updates.html5rocks.com/2012/05/requestAnimationFrame-API-now-with-sub-millisecond-precision tells me that recently (Chrome 20) requestAnimationFrame has gained a new sub-millisecond precision ...
0
votes
1answer
86 views

DOM element visiility and requestAnimationFrame

I was reading an article on HTML5Rocks that gave an example about scrolling through a webpage and checking an array of DOM elements offsetTop's to see if they should be visible. The article says the ...
0
votes
1answer
171 views

Safari on iPad won't stop requesting animation frames

I am encountering a strange situation with Safari on iPad. I do have a spritesheet-based animation sequence that you can play in a "ping-pong" manner: you click once, it plays forward until its last ...
0
votes
2answers
234 views

requestAnimationFrame detect stop

I've noticed that whenever I dock the browser window or switch tabs requestAnimationFrame stops being called (which I expect to happen). Is there a way to detect when this stop occurs? Reason is, ...
2
votes
0answers
246 views

requestAnimationFrame for begining a CSS transition

Does it make sense to request an animation frame for beginning a CSS transition? For example, the Mozilla CSS transitions page includes a link to this jsfiddle example: CSS: #foo{ ...
3
votes
2answers
481 views

requestAnimFrame can't give a constant frame rate, but my physics engine needs it

I use Box2D with WebGL. Box2D demands a constant frame rate (time steps for it's "world" updates). function update(time) {//update of box2d world world.Step( 1/60 // 1 / frame-rate ...
0
votes
1answer
167 views

Requestanimationframe usage issue

I got the following RequestAnimationframe function from http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating I am trying to use it. But not sure how to call it and ...
0
votes
2answers
283 views

My WebGL animation is slow despite requestAnimationFrame()

I'm trying to create webgl animation for my website background, inspired by "threejs - Cloud exemple" (http://mrdoob.com/lab/javascript/webgl/clouds/). On my computer it seems rather well... But for ...
0
votes
0answers
510 views

Canvas sprite rendering bug on Samsung Galaxy Note 10.1 in native Android browser

I have a <canvas> element that I refresh upon every animation cycle using window.requestAnimationFrame (or more correctly a shim of window.requestAnimationFrame since few browsers actually ...
1
vote
1answer
56 views

requestAnimationFrame attached to App object not Window

I have set up the following jsFiddle http://jsfiddle.net/ZbhQY/4/ Im using a small requestAnimationFrame polyfill and returning the result to window.reqeuestAnimFrame this all works fine and all ...

1 2