質問編集履歴
1
コードの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,4 +20,44 @@
|
|
20
20
|
|
21
21
|
|
22
22
|
|
23
|
+
```
|
24
|
+
|
25
|
+
#hero img {
|
26
|
+
|
27
|
+
width: 400px;
|
28
|
+
|
29
|
+
height: 600px;
|
30
|
+
|
31
|
+
position: absolute;
|
32
|
+
|
33
|
+
bottom: 0;
|
34
|
+
|
35
|
+
left: 0;
|
36
|
+
|
37
|
+
animation-delay: 4s;
|
38
|
+
|
39
|
+
animation-name: up;
|
40
|
+
|
41
|
+
animation-duration: 5s;
|
42
|
+
|
43
|
+
animation-iteration-count: 3;
|
44
|
+
|
45
|
+
animation-timing-function: linear;
|
46
|
+
|
47
|
+
}
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
@keyframes up {
|
52
|
+
|
53
|
+
0% { bottom: -600px; }
|
54
|
+
|
55
|
+
100% { bottom: 100vh; }
|
56
|
+
|
57
|
+
}
|
58
|
+
|
59
|
+
```
|
60
|
+
|
61
|
+
|
62
|
+
|
23
63
|
![イメージ説明](4070a2ab9a3a03256901814f4f841731.png)
|