-
Notifications
You must be signed in to change notification settings - Fork 0
/
05-Animation.html
42 lines (42 loc) · 1.11 KB
/
05-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
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Animasi</title>
<script src="https://aframe.io/releases/1.0.4/aframe.min.js"></script>
</head>
<body>
<a-scene>
<!-- box -->
<a-box id="box1" color="#aa0000" position="0 1 -3"
animation="
property:position;
from:0 -3 -3;
to:0 3 -3;
dur:2000;
loop:true;
dir:alternate;
easing:easeOutCubic;
"
animation__satu="
property:rotation;
to:0 360 0;
dur:2000;
loop:true;
dir:alternate;
easing:easeInCubic;
"
animation__dua="
property:scale;
to:0.5 0.5 0.5;
dur:2000;
loop:true;
dir:alternate;
"
></a-box>
<a-box id="box2" color="#00aa00" position="2 1 -3"></a-box>
<a-box id="box3" color="#aaaa00" position="-2 1 -3"></a-box>
</a-scene>
</body>
</html>