質問編集履歴
1
参考にした質問と現在のコードを追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -25,3 +25,81 @@
|
|
25
25
|
サンプルを試しつつ作成しましたが、いまいち再現できません。
|
26
26
|
|
27
27
|
お力添え頂ければ幸いです。
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
---
|
32
|
+
|
33
|
+
**追記です。**
|
34
|
+
|
35
|
+
下記質問を参考に致しました。
|
36
|
+
|
37
|
+
[cssで文字を一文字ずつゆっくりと表示させたい](https://teratail.com/questions/338354)
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
下記、再現できずにいるコードです。
|
42
|
+
|
43
|
+
流れの5ができません。
|
44
|
+
|
45
|
+
```ここに言語を入力
|
46
|
+
|
47
|
+
■HTML
|
48
|
+
|
49
|
+
<div id="sample">
|
50
|
+
|
51
|
+
<a href="#" class="text">
|
52
|
+
|
53
|
+
<span class="c1">あ</span><span class="c2">い</span><span class="c3">う</span>
|
54
|
+
|
55
|
+
</a>
|
56
|
+
|
57
|
+
</div>
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
■CSS
|
62
|
+
|
63
|
+
#sample a {
|
64
|
+
|
65
|
+
border:1px solid #CCC;
|
66
|
+
|
67
|
+
padding:15px;
|
68
|
+
|
69
|
+
}
|
70
|
+
|
71
|
+
.text .c1, .text .c2, .text .c3, .text .c4, .text .c5, .text .c6 {
|
72
|
+
|
73
|
+
animation:ease-in-out;
|
74
|
+
|
75
|
+
opacity:0;
|
76
|
+
|
77
|
+
}
|
78
|
+
|
79
|
+
#sample a:hover .c1, #sample a:hover .c2, #sample a:hover .c3, #sample a:hover .c4, #sample a:hover .c5, #sample a:hover .c6 {
|
80
|
+
|
81
|
+
opacity: 0;
|
82
|
+
|
83
|
+
animation: 2.0s ease-in-out forwards fadeIn;
|
84
|
+
|
85
|
+
}
|
86
|
+
|
87
|
+
#sample a:hover .c1 { animation-delay: 0.0s; }
|
88
|
+
|
89
|
+
#sample a:hover .c2 { animation-delay: 0.5s; }
|
90
|
+
|
91
|
+
#sample a:hover .c3 { animation-delay: 1.0s; }
|
92
|
+
|
93
|
+
@keyframes fadeIn {
|
94
|
+
|
95
|
+
to { opacity: 1;
|
96
|
+
|
97
|
+
animation: ease-in-out; }
|
98
|
+
|
99
|
+
}
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
```
|