-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposite.html
More file actions
29 lines (29 loc) · 902 Bytes
/
composite.html
File metadata and controls
29 lines (29 loc) · 902 Bytes
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Animation API Composite Test</title>
<link rel="stylesheet" href="static/src-composite/style.css">
</head>
<body>
<h1>Web Animations APIなら要素の入れ子なしで曲線アニメーションもできる!!</h1>
<button id="run">Run Animations</button>
<div class="stage"></div>
<div class="legend">
<div class="item item1">
<span class="label">linear</span>
</div>
<div class="item item2">
<span class="label">easeout</span>
</div>
<div class="item item3">
<span class="label">X=linear, Y=easeout</span>
</div>
<div class="item item4">
<span class="label">いろいろ</span>
</div>
</div>
<script src="static/src-composite/main.js" type="module"></script>
</body>
</html>