-
Notifications
You must be signed in to change notification settings - Fork 1
/
03_css_animation.html
30 lines (28 loc) · 955 Bytes
/
03_css_animation.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script class="builder" src="dist/core/live2dcubismcore.js"></script>
<script class="builder" src="dist/src/03_css_animation/index.js" type="module"></script>
<style id="style">
.loading * {
animation-play-state: paused !important;
}
</style>
</head>
<body>
<svg id="svgScene" width="1024" height="1024" viewBox="512,100,1024,1024" preserveAspectRatio="none">
<defs id="svgDefs">
<symbol id="texture_00" width="2048" height="2048">
<image xlink:href="resources/Haru/Haru.2048/texture_00.png"/>
</symbol>
<symbol id="texture_01" width="2048" height="2048">
<image xlink:href="resources/Haru/Haru.2048/texture_01.png"/>
</symbol>
</defs>
</svg>
</body>
</html>