blob: 1e7f250c48fb093160a509b3d98c0b265085179f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<title>CSS Test (Animations): Element.animate() animating both transform and opacity on an inline</title>
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
<link rel="author" title="Google" href="http://www.google.com/">
<style>
#target {
opacity: 0.4;
will-change: opacity;
}
</style>
<body><span id="target">x</span></body>
|