回答編集履歴

2

余計な改行を削除

2019/07/08 06:33

投稿

root_jp
root_jp

スコア4666

test CHANGED
@@ -26,9 +26,7 @@
26
26
 
27
27
 
28
28
 
29
- html,
30
-
31
- body {
29
+ html, body {
32
30
 
33
31
  width: 100%;
34
32
 

1

アニメーションの変化するタイミングを修正

2019/07/08 06:33

投稿

root_jp
root_jp

スコア4666

test CHANGED
@@ -68,25 +68,25 @@
68
68
 
69
69
  @keyframes change-bgcolor {
70
70
 
71
- 0% {
71
+ 25% {
72
72
 
73
73
  background-color: rgba(255, 255, 255, 0.5);
74
74
 
75
75
  }
76
76
 
77
- 25% {
77
+ 50% {
78
78
 
79
79
  background-color: rgba(255, 0, 0, 0.5);
80
80
 
81
81
  }
82
82
 
83
- 50% {
83
+ 75% {
84
84
 
85
85
  background-color: rgba(0, 255, 0, 0.5);
86
86
 
87
87
  }
88
88
 
89
- 75% {
89
+ 100% {
90
90
 
91
91
  background-color: rgba(0, 0, 255, 0.5);
92
92