window.cancelAnimationFrame()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Experimental: Esta es una tecnología experimental
Comprueba la Tabla de compabilidad de navegadores cuidadosamente antes de usarla en producción.
Resumen
Cancela la petición de animación previamente programada a través de window.requestAnimationFrame()
.
Sintaxis
window.cancelAnimationFrame(requestID);
Nota:
Antes de Firefox 23, la función es independiente del proveedor con el prefijo window.mozCancelAnimationFrame()
. Consulte la tabla de compatibilidad, a continuación, para otras implementaciones de navegador.
Parámetros
ID de la petición
-
El valor del ID regresado por la llamada a
window.requestAnimationFrame()
que solicitó una llamada de vuelta.
Ejemplos
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) {
myReq = requestAnimationFrame(step);
}
}
myReq = requestAnimationFrame(step);
window.cancelAnimationFrame(myReq);
Especificaciones
Specification |
---|
HTML Standard # animationframeprovider-cancelanimationframe |
Compatibilidad con navegadores
BCD tables only load in the browser