blob: 7091fd26641f1c18f78f8db38418127fa2348fe4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
---
title: window.cancelAnimationFrame()
slug: Web/API/Window/cancelAnimationFrame
tags:
- API
- Animation
- DOM
- Experimental
- Méthode
- Reference
- Window
translation_of: Web/API/Window/cancelAnimationFrame
---
{{APIRef}}La méthode **`window.cancelAnimationFrame()`** met fin à une animation précédement configurée par un appel à {{domxref("window.requestAnimationFrame()")}}.
## Syntaxe
window.cancelAnimationFrame(requestID);
### Paramètres
- `requestID`
- : L'identifiant retourné par l'appel à {{domxref("window.requestAnimationFrame()")}} qui a généré la fonction de rappel (callback)
## Exemples
```js
var requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame ||
window.webkitRequestAnimationFrame || window.msRequestAnimationFrame;
var cancelAnimationFrame = window.cancelAnimationFrame || window.mozCancelAnimationFrame;
var start = window.mozAnimationStartTime; // Seulement supporté par Firefox. Les autre navigateurs peuvent utiliser quelque chose comme Date.now()..
var myReq; // Déclarer la variable globalement avant de lancer l'animation
function step(timestamp) {
var progress = timestamp - start;
d.style.left = Math.min(progress / 10, 200) + 'px';
if (progress < 2000) {
// Ne pas oublier de récupérer l'identifiant à chaque appel de la fonction
myReq = requestAnimationFrame(step);
}
}
myReq = requestAnimationFrame(step);
// L'annulation utilise le dernier identifiant
cancelAnimationFrame(myReq);
```
## Spécifications
| Spécification |
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| {{spec("https://www.w3.org/TR/html51/webappapis.html#animation-frames", "Timing control for script-based animations: cancelAnimationFrame", "WD")}} |
## Compatibilité des navigateurs
{{Compat("api.Window.cancelAnimationFrame")}}
## Voir aussi
- {{domxref("window.mozAnimationStartTime")}}
- {{domxref("window.requestAnimationFrame()")}}
|