質問編集履歴

2

animate.caaを追加

2020/01/05 02:35

投稿

rikue
rikue

スコア6

test CHANGED
File without changes
test CHANGED
@@ -128,4 +128,100 @@
128
128
 
129
129
 
130
130
 
131
+ ```animate.css
132
+
133
+ .animate-box {
134
+
135
+ opacity: 0;
136
+
137
+ }
138
+
139
+
140
+
141
+ .animated {
142
+
143
+ -webkit-animation-duration: 1s;
144
+
145
+ animation-duration: 1s;
146
+
147
+ -webkit-animation-fill-mode: both;
148
+
149
+ animation-fill-mode: both;
150
+
151
+ }
152
+
153
+
154
+
155
+ @keyframes fadeIn {
156
+
157
+ from {
158
+
159
+ opacity: 0;
160
+
161
+ }
162
+
163
+
164
+
165
+ to {
166
+
167
+ opacity: 1;
168
+
169
+ }
170
+
171
+ }
172
+
173
+
174
+
175
+ .fadeIn {
176
+
177
+ -webkit-animation-name: fadeIn;
178
+
179
+ animation-name: fadeIn;
180
+
181
+ }
182
+
183
+ @keyframes fadeInRight {
184
+
185
+ from {
186
+
187
+ opacity: 0;
188
+
189
+ /*-webkit-transform: translate3d(100%, 0, 0);
190
+
191
+ transform: translate3d(100%, 0, 0);*/
192
+
193
+ -webkit-transform: translate3d(50px, 0, 0);
194
+
195
+ transform: translate3d(50px, 0, 0);
196
+
197
+ }
198
+
199
+
200
+
201
+ to {
202
+
203
+ opacity: 1;
204
+
205
+ -webkit-transform: none;
206
+
207
+ transform: none;
208
+
209
+ }
210
+
211
+ }
212
+
213
+
214
+
215
+ .fadeInRight {
216
+
217
+ -webkit-animation-name: fadeInRight;
218
+
219
+ animation-name: fadeInRight;
220
+
221
+ }
222
+
223
+ ```
224
+
225
+
226
+
131
227
  googleで調べてみましたが解決方法を見つけれませんでした。

1

画像を追加しました

2020/01/05 02:35

投稿

rikue
rikue

スコア6

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,10 @@
1
1
  waypoint.js、animate.cssを使いフェードインを試してみたのですが、ブラウザで実行したときブラウザ下部に一時的にバーが出現しフェードイン後に元に戻るといった挙動をしていました。
2
2
 
3
3
  このような挙動をなくす方法がありましたら教えていただきたいです。
4
+
5
+
6
+
7
+ ![その場面のスクリーンショット](2a2fbaeec768de7e44089c88604edad4.png)
4
8
 
5
9
 
6
10