The Code:
JavaScript
x
446
446
1
<html>
2
<style>
3
.img {
4
max-width: 100%;
5
}
6
7
.Headerstyle {
8
color: Black;
9
transition: transform .2s;
10
text-align: center;
11
margin-top: 39%;
12
}
13
14
.Headerstyle:hover {
15
transform: scale(1.5);
16
transition: 0.2s;
17
}
18
19
.HeaderstyleBack {
20
color: white;
21
transition: transform .2s;
22
text-align: center;
23
margin-top: 39%;
24
}
25
26
.HeaderstyleBack:hover {
27
transform: scale(1.5);
28
transition: 0.2s;
29
}
30
31
.image1 {
32
padding: 10px;
33
transition: transform .2s;
34
}
35
36
.image2 {
37
padding: 10px;
38
transition: transform .2s;
39
}
40
41
.image1:hover {
42
#border: 4px solid green;
43
#border-radius: 15px;
44
transform: scale(1.5);
45
transition: 0.2s;
46
}
47
48
.image2:hover {
49
#border: 4px solid green;
50
#border-radius: 15px;
51
transform: scale(1.5);
52
transition: 0.2s;
53
}
54
55
.imageback1 {
56
padding: 10px;
57
transition: transform .2s;
58
}
59
60
.imageback2 {
61
padding: 10px;
62
transition: transform .2s;
63
}
64
65
.imageback1:hover {
66
#border: 4px solid green;
67
#border-radius: 15px;
68
transform: scale(1.5);
69
transition: 0.2s;
70
}
71
72
.imageback2:hover {
73
#border: 4px solid green;
74
#border-radius: 15px;
75
transform: scale(1.5);
76
transition: 0.2s;
77
}
78
79
.footer {
80
position: relative;
81
left: 0;
82
bottom: 7%;
83
width: 100%;
84
background-color: ##0000ffff;
85
color: white;
86
text-align: center;
87
}
88
89
body {
90
border-style: solid;
91
border-width: 17px;
92
border-radius: 5px;
93
padding: 100px;
94
transition: 5s;
95
}
96
97
body {
98
margin: 0;
99
padding: 0;
100
animation: pulse 5s infinite;
101
}
102
103
.container {
104
width: 100%;
105
margin: 0px;
106
}
107
108
.Loading {
109
position: relative;
110
display: inline-block;
111
width: 100%;
112
height: 10%;
113
background: #f1f1f1;
114
box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
115
border-radius: 4px;
116
overflow: hidden;
117
margin-bottom: -50px;
118
}
119
120
.Loading:after {
121
content: '';
122
position: absolute;
123
background: blue;
124
width: 10%;
125
height: 100%;
126
border-radius: 2px;
127
box-shadow: 0 0 5px rgba(0, 0, 0, .2);
128
animation: load 5s infinite;
129
}
130
131
@keyframes load {
132
0% {
133
left: 0%;
134
}
135
25% {
136
width: 50%;
137
left: 50%
138
}
139
50% {
140
width: 10%;
141
left: 90%
142
}
143
75% {
144
width: 50%;
145
left: 0%
146
}
147
100% {
148
width: 10%;
149
left: 0%
150
}
151
}
152
153
@keyframes pulse {
154
0% {
155
border-color: gray;
156
}
157
25% {
158
border-color: gray;
159
}
160
50% {
161
border-color: gray;
162
}
163
75% {
164
border-color: #282828;
165
}
166
100% {
167
border-color: #282828;
168
}
169
}
170
171
.LoadingBack {
172
position: relative;
173
display: inline-block;
174
width: 100%;
175
height: 10%;
176
background: #000000;
177
box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
178
border-radius: 4px;
179
overflow: hidden;
180
margin-bottom: -50px;
181
}
182
183
.LoadingBack:after {
184
content: '';
185
position: absolute;
186
background: white;
187
width: 10%;
188
height: 100%;
189
border-radius: 2px;
190
box-shadow: 0 0 5px rgba(0, 0, 0, .2);
191
animation: load 5s infinite;
192
}
193
194
@keyframes load {
195
0% {
196
left: 0%;
197
}
198
25% {
199
width: 50%;
200
left: 50%
201
}
202
50% {
203
width: 10%;
204
left: 90%
205
}
206
75% {
207
width: 50%;
208
left: 0%
209
}
210
100% {
211
width: 10%;
212
left: 0%
213
}
214
}
215
216
@keyframes pulse {
217
0% {
218
border-color: #6699ff;
219
}
220
25% {
221
border-color: #ff6600;
222
}
223
50% {
224
border-color: #6699ff;
225
}
226
75% {
227
border-color: #ff6600;
228
}
229
100% {
230
border-color: #6699ff;
231
}
232
}
233
/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
234
235
.flip-card {
236
background-color: transparent;
237
width: 100%;
238
height: 100%;
239
border: 1px solid #f1f1f1;
240
perspective: 1000px;
241
/* Remove this if you don't want the 3D effect */
242
}
243
/* This container is needed to position the front and back side */
244
245
.flip-card-inner {
246
position: relative;
247
width: 100%;
248
height: 100%;
249
text-align: center;
250
transition: transform 1.5s;
251
transform-style: preserve-3d;
252
}
253
/* Do an horizontal flip when you move the mouse over the flip box container */
254
255
.flip-card:active .flip-card-inner {
256
transform: rotateY(180deg);
257
}
258
/* Position the front and back side */
259
260
.flip-card-front,
261
.flip-card-back {
262
position: absolute;
263
width: 100%;
264
height: 100%;
265
-webkit-backface-visibility: hidden;
266
/* Safari */
267
backface-visibility: hidden;
268
}
269
/* Style the front side (fallback if image is missing) */
270
271
.flip-card-front {
272
background-color: #FFFDD0;
273
color: black;
274
}
275
/* Style the back side */
276
277
.flip-card-back {
278
# background-color: orange;
279
color: white;
280
font: 18px Arial, sans-serif;
281
background-image: url('https://c.tenor.com/YR9WPlpD1zEAAAAd/cloud.gif');
282
background-size: cover;
283
transform: rotateY(180deg);
284
}
285
286
287
288
//////////////////////////
289
*{
290
margin: 0px;
291
padding: 0px;
292
}
293
294
body{
295
font-family: Ariel, Helvetica, sans-serif;
296
background-color: #A3EBB1 ;
297
298
color: white;
299
line-height: 1.6;
300
text-align: center;
301
}
302
303
.container-welcome{
304
max-width: 960px;
305
margin: auto;
306
padding: 0 30px;
307
}
308
309
#showcase{
310
height: 300px;
311
}
312
313
#showcase h1{
314
font-size: 50px;
315
line-height: 1.3;
316
position: relative;
317
animation: heading;
318
animation-duration: 2.5s;
319
animation-fill-mode: forwards;
320
321
}
322
323
@keyframes heading{
324
0% {top: -50px;}
325
100% {top: 200px;}
326
}
327
328
#visual2 {
329
position: relative;
330
animation-name: visual;
331
animation-duration: 2s;
332
animation-fill-mode: forwards;
333
}
334
335
@keyframes visua2l{
336
0% {left: -1000px;}
337
100% {left: 0px;}
338
}
339
340
#visual {
341
342
position: relative;
343
animation: mymove 5s infinite;
344
}
345
346
@keyframes mymove {
347
50% {transform: rotate(45deg);}
348
}
349
350
351
352
.homepage {
353
354
display = 'none';
355
356
}
357
358
//////////////////////////
359
360
</style>
361
362
363
364
365
<script>
366
setTimeout(() => { const box = document.getElementById('showcase'); box.style.display = 'none';}, 2500);
367
368
setTimeout(() => { const box = document.getElementById('visual'); box.style.display = 'none';}, 2500);
369
370
setTimeout(() => { const box2 = document.getElementById('homepage'); box2.style.display = 'block';}, 2500);
371
372
373
</script>
374
375
376
377
378
379
<body>
380
381
382
<head>
383
<title>Dynamic Web Page</title>
384
</head>
385
386
<header id="showcase">
387
<h1>Uygulamaya Hoşgeldiniz</h1>
388
</header>
389
<div id="visual" class="container-welcome">
390
<img src="https://www.iconsdb.com/icons/preview/white/emoticon-30-xxl.png">
391
</div>
392
393
</div>
394
395
396
397
398
<div class="flip-card" id="homepage" style= "display:none;">
399
<div class="flip-card-inner">
400
<div class="flip-card-front">
401
<div class="footer" style="
402
display: flex;
403
flex-direction: column;
404
justify-content: space-between;
405
height: 100vh;">
406
<p class="Headerstyle"><b></b></p>
407
<div>
408
<div style="display: flex;justify-content: center;">
409
410
<a href="https://stackoverflow.com/"><img class="image1" src="https://cdn-icons-png.flaticon.com/128/2111/2111628.png" alt="stackoverflow icon" width="60" height="60"></a>
411
<a href="https://www.linkedin.com"><img class="image2" src="https://cdn-icons-png.flaticon.com/512/174/174857.png" alt="linkedin icon" width="60" height="60"></a>
412
</div>
413
<div class="container">
414
</div>
415
<div class="Loading"></div>
416
</div>
417
</div>
418
419
</div>
420
<div class="flip-card-back">
421
<div class="footer" style="
422
display: flex;
423
flex-direction: column;
424
justify-content: space-between;
425
height: 100vh;">
426
<p class="HeaderstyleBack"><b>tasci.murat06@gmail.com</b></p>
427
<div>
428
<div style="display: flex;justify-content: center;">
429
430
<a href="https://stackoverflow.com/"><img class="imageback1" src="https://cdn.iconscout.com/icon/free/png-64/stack-overflow-3770615-3147335.png" alt="stackoverflow icon" width="60" height="60"></a>
431
<a href="https://www.linkedin.com"><img class="imageback2" src="https://cdn.iconscout.com/icon/free/png-64/linkedin-104-436658.png" alt="linkedin icon" width="60" height="60"></a>
432
</div>
433
<div class="container">
434
</div>
435
<div class="LoadingBack"></div>
436
</div>
437
</div>
438
</div>
439
</div>
440
441
442
443
</body>
444
445
</html>
446
Hello friends,I have 2 questions. Firstly,How can I add a blink animation at the same angle after your smiley face turns a certain angle? In my code there is no blinking smiley feature. Finally, how do I make the page border not visible on the welcoming page? so mean I don’t want the border to appear on the welcoming screen. I have added Example images for this situation
Advertisement
Answer
I think this will help you. Add animation to your image and wait for finish animation(with delay function) then change the image with js.
JavaScript
1
17
17
1
function delay(time) {
2
return new Promise(resolve => setTimeout(resolve, time));
3
}
4
5
function bodyOnload() {
6
document.getElementById('animatedImg').style.WebkitTransitionDuration = '1s';
7
document.getElementById('animatedImg').style.webkitTransform = 'rotate(45deg)';
8
delay(900).then(() => {
9
document.getElementById('animatedImg').src = "https://www.iconsdb.com/icons/preview/black/wink-xxl.png";
10
/* if you don't want to rotate base delete this delay block*/
11
delay(900).then(() => {
12
document.getElementById('animatedImg').src = "https://www.iconsdb.com/icons/preview/white/emoticon-30-xxl.png";
13
document.getElementById('animatedImg').style.WebkitTransitionDuration = '1s';
14
document.getElementById('animatedImg').style.webkitTransform = 'rotate(0)';
15
});
16
});
17
}
JavaScript
1
11
11
1
body {
2
background-color: #A3EBB1;
3
color: white;
4
text-align: center;
5
}
6
7
.container-welcome {
8
max-width: 960px;
9
margin: auto;
10
padding: 0 30px;
11
}
JavaScript
1
5
1
<body onload="bodyOnload()">
2
<div class="container-welcome">
3
<img id="animatedImg" src="https://www.iconsdb.com/icons/preview/white/emoticon-30-xxl.png">
4
</div>
5
</body>