The window.cancelAnimationFrame() method cancels an animation frame request previously scheduled through a call to window.requestAnimationFrame().
Syntax
window.cancelAnimationFrame(requestID);
Parameters
requestID- The ID value returned by the call to
window.requestAnimationFrame()that requested the callback.
Examples
var requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame ||
window.webkitRequestAnimationFrame || window.msRequestAnimationFrame;
var cancelAnimationFrame = window.cancelAnimationFrame || window.mozCancelAnimationFrame;
var start = window.mozAnimationStartTime; // Only supported in FF. Other browsers can use something like Date.now().
var myReq;
function step(timestamp) {
var progress = timestamp - start;
d.style.left = Math.min(progress / 10, 200) + 'px';
if (progress < 2000) {
// it's important to update the requestId each time you're calling requestAnimationFrame
myReq = requestAnimationFrame(step);
}
}
myReq = requestAnimationFrame(step);
// the cancelation uses the last requestId
cancelAnimationFrame(myReq);
Specifications
| Specification | Status | Comment |
|---|---|---|
| HTML Living Standard The definition of 'cancelAnimationFrame()' in that specification. |
Living Standard |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
cancelAnimationFrame | Chrome Full support Yes | Edge Full support 12 | Firefox
Full support
23
| IE Full support 10 | Opera Full support 15 | Safari
Full support
6.1
| WebView Android Full support Yes | Chrome Android Full support Yes | Firefox Android
Full support
23
| Opera Android Full support 14 | Safari iOS Full support 7 | Samsung Internet Android Full support Yes |
Legend
- Full support
- Full support
- Requires a vendor prefix or different name for use.
- Requires a vendor prefix or different name for use.
