質問編集履歴
1
コードの追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -9,4 +9,24 @@
|
|
9
9
|
CSSで実現不可の場合、jsでどうにかなるのであれば
|
10
10
|
その手法も教えていただけましたら幸いです。
|
11
11
|
|
12
|
+
```
|
13
|
+
#hero img {
|
14
|
+
width: 400px;
|
15
|
+
height: 600px;
|
16
|
+
position: absolute;
|
17
|
+
bottom: 0;
|
18
|
+
left: 0;
|
19
|
+
animation-delay: 4s;
|
20
|
+
animation-name: up;
|
21
|
+
animation-duration: 5s;
|
22
|
+
animation-iteration-count: 3;
|
23
|
+
animation-timing-function: linear;
|
24
|
+
}
|
25
|
+
|
26
|
+
@keyframes up {
|
27
|
+
0% { bottom: -600px; }
|
28
|
+
100% { bottom: 100vh; }
|
29
|
+
}
|
30
|
+
```
|
31
|
+
|
12
32
|

|