- Notifications
You must be signed in to change notification settings - Fork 22.7k
/
Copy pathindex.md
36 lines (25 loc) · 1.1 KB
/
index.md
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
---
title: "KeyframeEffect: composite property"
short-title: composite
slug: Web/API/KeyframeEffect/composite
page-type: web-api-instance-property
browser-compat: api.KeyframeEffect.composite
---
{{ APIRef("Web Animations") }}
The **`composite`** property of a {{domxref("KeyframeEffect")}} resolves how an element's animation impacts its underlying property values.
## Value
To understand these values, take the example of a `keyframeEffect` value of `blur(2)` working on an underlying property value of `blur(3)`.
-`replace`
- : The `keyframeEffect`**overrides** the underlying value it is combined with: `blur(2)` replaces `blur(3)`.
-`add`
- : The `keyframeEffect` is **added** to the underlying value with which it is combined (aka _additive_): `blur(2) blur(3)`.
-`accumulate`
- : The keyframeEffect is **accumulated** on to the underlying value: `blur(5)`.
## Specifications
{{Specifications}}
## Browser compatibility
{{Compat}}
## See also
-[Web Animations API](/en-US/docs/Web/API/Web_Animations_API)
- Property of {{domxref("KeyframeEffect")}} objects
- {{Glossary("Composite operation")}}