回答編集履歴

2

コード修正

2021/01/22 00:16

投稿

hatena19
hatena19

スコア34073

test CHANGED
@@ -52,7 +52,7 @@
52
52
 
53
53
  .node1 {
54
54
 
55
- animation: anm0 8.2s, anm1 10s 10s infinite;
55
+ animation: anm0 8.11s, anm1 10s 8.11s infinite;
56
56
 
57
57
  }
58
58
 

1

コード追記

2021/01/22 00:16

投稿

hatena19
hatena19

スコア34073

test CHANGED
@@ -41,3 +41,51 @@
41
41
  }
42
42
 
43
43
  ```
44
+
45
+ ---
46
+
47
+ animation-timing-function を初期値(ease)で、開始時もease-inで開始したい場合は、複数アニメーションを設定するいいでしょう。カンマで区切って記述すると複数のアニメーションを設定できます。
48
+
49
+
50
+
51
+ ```css
52
+
53
+ .node1 {
54
+
55
+ animation: anm0 8.2s, anm1 10s 10s infinite;
56
+
57
+ }
58
+
59
+ @keyframes anm1 {
60
+
61
+ 0% {
62
+
63
+ transform: translate(-100px,50px);
64
+
65
+ }
66
+
67
+ 100% {
68
+
69
+ transform: translate(1000px,50px);
70
+
71
+ }
72
+
73
+ }
74
+
75
+ @keyframes anm0 {
76
+
77
+ 0% {
78
+
79
+ transform: translate(100px,50px);
80
+
81
+ }
82
+
83
+ 100% {
84
+
85
+ transform: translate(1000px,50px);
86
+
87
+ }
88
+
89
+ }
90
+
91
+ ```