What links would I need to have this animation work properly on any other IDE’s? Does anyone know? The animation works fine here: https://codepen.io/ksu/pen/VwZQmGR
JavaScript
x
8
1
new WOW().init();
2
3
/* AUTHOR LINK */
4
$('.about-me-img img, .authorWindowWrapper').hover(function() {
5
$('.authorWindowWrapper').stop().fadeIn('fast').find('p').addClass('trans');
6
}, function() {
7
//$('.authorWindowWrapper').stop().css('display', 'none').find('p').removeClass('trans');
8
});
JavaScript
1
456
456
1
body {
2
font-family: Open Sans, "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
3
font-size: 13px;
4
color: #666;
5
position: relative;
6
-webkit-font-smoothing: antialiased;
7
margin: 0;
8
}
9
10
* {
11
-webkit-box-sizing: border-box;
12
-moz-box-sizing: border-box;
13
box-sizing: border-box;
14
}
15
16
body,
17
div,
18
dl,
19
dt,
20
dd,
21
ul,
22
ol,
23
li,
24
h1,
25
h2,
26
h3,
27
h4,
28
h5,
29
h6,
30
pre,
31
form,
32
p,
33
blockquote,
34
th,
35
td {
36
margin: 0;
37
padding: 0;
38
font-size: 13px;
39
direction: ltr;
40
}
41
42
.sectionClass {
43
padding: 80px 0px 50px 0px;
44
position: relative;
45
display: block;
46
background: rgb(249, 249, 249);
47
}
48
49
.row {
50
width: 980px;
51
height: 100%;
52
max-width: 100%;
53
margin: 0 auto;
54
}
55
56
.row:before,
57
.row:after {
58
content: "";
59
display: table;
60
}
61
62
.sectiontitle {
63
background-position: center;
64
text-align: center;
65
min-height: 20px;
66
}
67
68
.sectiontitle h2 {
69
font-size: 30px;
70
color: #222;
71
margin-bottom: 0px;
72
padding-right: 10px;
73
padding-left: 10px;
74
}
75
76
.headerLine {
77
width: 160px;
78
height: 2px;
79
display: inline-block;
80
background: #101F2E;
81
}
82
83
.fullWidth {
84
width: 100%;
85
display: table;
86
float: none;
87
padding: 0;
88
min-height: 1px;
89
height: 100%;
90
position: relative;
91
}
92
/********************************/
93
/* SECTION WORK EXPERIENCE
94
********************************/
95
96
#work-experience .sectiontitle .headerLine {
97
width: 280px;
98
}
99
100
#work-experience .headerline {
101
width: 280px;
102
}
103
104
.cbp_tmtimeline {
105
margin: 60px 30px 0 0;
106
padding: 0;
107
list-style: none;
108
position: relative;
109
}
110
111
.cbp_tmtimeline:before {
112
content: '';
113
position: absolute;
114
top: 3%;
115
bottom: 0;
116
width: 10px;
117
background: #324454;
118
left: 13%;
119
height: 100%;
120
}
121
122
.cbp_tmtimeline li:last-child:before {
123
content: initial;
124
}
125
126
.cbp_tmtimeline > li .cbp_tmtime {
127
display: block;
128
width: 25%;
129
padding-right: 100px;
130
position: absolute;
131
}
132
133
.cbp_tmtimeline > li .cbp_tmtime span {
134
display: block;
135
text-align: right;
136
}
137
138
.cbp_tmtimeline > li .cbp_tmtime span:first-child {
139
font-size: 0.9em;
140
color: #bdd0db;
141
}
142
143
.cbp_tmtimeline > li .cbp_tmtime span:last-child {
144
font-size: 2.9em;
145
color: #3594cb;
146
}
147
148
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmtime span:last-child {
149
color: #6cbfee;
150
}
151
152
.cbp_tmtimeline > li .cbp_tmlabel {
153
margin: 0 0 15px 25%;
154
background: rgba(50, 68, 84, 1);
155
color: #FFF;
156
padding: 30px;
157
font-size: 1.2em;
158
font-weight: 300;
159
line-height: 1.4;
160
font-family: 'Open Sans';
161
position: relative;
162
border-radius: 5px;
163
min-height: 150px;
164
}
165
166
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel {
167
background: #2B3A48;
168
}
169
170
.cbp_tmtimeline > li .cbp_tmlabel h3 {
171
margin-top: 0px;
172
color: white;
173
font-size: 20px;
174
margin-bottom: 5px;
175
padding: 0 0 10px 0;
176
border-bottom: 1px solid rgba(255, 255, 255, 0.4);
177
font-family: 'Open Sans', sans-serif;
178
font-weight: bold;
179
}
180
181
.cbp_tmtimeline > li .cbp_tmlabel h4 {
182
opacity: 0.7;
183
color: rgba(255, 255, 255, 1);
184
letter-spacing: 0px;
185
font-family: 'Source Sans Pro', sans-serif;
186
font-size: 18px;
187
line-height: 1.2em;
188
font-weight: 600;
189
padding: 0;
190
padding-bottom: 10px;
191
margin: 0;
192
text-align: left;
193
}
194
195
.cbp_tmtimeline > li .cbp_tmlabel h4 i {
196
margin-right: 5px;
197
vertical-align: middle;
198
}
199
200
.cbp_tmtimeline > li .cbp_tmlabel:after {
201
right: 100%;
202
border: solid transparent;
203
content: " ";
204
height: 0;
205
width: 0;
206
position: absolute;
207
pointer-events: none;
208
border-right-color: rgba(50, 68, 84, 1);
209
border-width: 10px;
210
top: 70px;
211
}
212
213
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
214
border-right-color: #2B3A48;
215
}
216
217
.cbp_tmtimeline > li .cbp_tmicon {
218
width: 150px;
219
height: 150px;
220
top: 3%;
221
speak: none;
222
font-style: normal;
223
font-weight: normal;
224
font-variant: normal;
225
text-transform: none;
226
font-size: 1.4em;
227
line-height: 40px;
228
-webkit-font-smoothing: antialiased;
229
position: absolute;
230
color: #151515;
231
background: #324454;
232
border-radius: 50%;
233
text-align: center;
234
left: 8%;
235
margin: 0 0 0 -25px;
236
}
237
238
.cbp_tmtimeline li {
239
margin-bottom: 70px;
240
position: relative;
241
}
242
243
.sectionClassProject {
244
position: relative;
245
display: block;
246
/* background: #f7f7f7; */
247
248
margin: 0 auto;
249
padding: 80px 1.875em 3.125em;
250
}
251
252
.projectParagraph {
253
font-size: 18px;
254
margin: 0.5em 0 0;
255
font-family: 'Source Sans Pro', serif;
256
}
257
258
.projectParagraphLink {
259
font-size: 15px !important;
260
font-weight: 500 !important;
261
margin-top: 50px !important;
262
margin-bottom: 0px;
263
text-align: right;
264
}
265
266
.projectParagraphLink a {
267
color: white;
268
text-decoration: underline;
269
}
270
271
.cbp_tmicon img {
272
width: 100%;
273
}
274
275
.faPra {
276
display: inline-block;
277
font: normal normal normal 14px/1 FontAwesome;
278
text-rendering: auto;
279
-webkit-font-smoothing: antialiased;
280
-moz-osx-font-smoothing: grayscale;
281
font-size: 70px;
282
vertical-align: middle;
283
color: white;
284
line-height: 150px;
285
}
286
287
.label {
288
background-color: rgba(255, 255, 255, 0.3);
289
border-radius: 3px;
290
color: #FFFFFF;
291
display: inline;
292
font-size: 12px;
293
font-weight: bold;
294
margin-right: 10px;
295
padding: 5px 15px;
296
}
297
298
.date {
299
color: #BFC3C7;
300
display: block;
301
font-size: 14px;
302
font-weight: 600;
303
position: absolute;
304
top: 30px;
305
right: 20px;
306
}
307
308
.date i {
309
margin-right: 8px;
310
vertical-align: top;
311
font-size: 18px;
312
line-height: 20px;
313
}
314
315
@media (max-width: 1024px) {
316
.cbp_tmtimeline:before {
317
display: none;
318
}
319
.cbp_tmtimeline > li .cbp_tmtime {
320
width: 100%;
321
position: relative;
322
padding: 0 0 20px 0;
323
}
324
.cbp_tmtimeline > li .cbp_tmtime span {
325
text-align: left;
326
}
327
.cbp_tmtimeline > li .cbp_tmlabel {
328
margin: 30px 0 70px 0;
329
padding: 50px 30px 30px 30px;
330
font-weight: 400;
331
font-size: 95%;
332
float: left;
333
}
334
.cbp_tmtimeline > li .cbp_tmlabel:after {
335
right: auto;
336
border-right-color: transparent;
337
border-bottom-color: rgb(50, 68, 84);
338
top: -20px;
339
}
340
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
341
border-right-color: transparent;
342
border-bottom-color: rgb(43, 58, 72);
343
left: 65px;
344
}
345
.cbp_tmtimeline > li:nth-child(even) .cbp_tmlabel:after {
346
right: 65px;
347
}
348
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmicon {
349
position: relative;
350
float: left;
351
left: auto;
352
margin: 0px 5px 0 0px;
353
}
354
.cbp_tmtimeline > li:nth-child(even) .cbp_tmicon {
355
position: relative;
356
float: right;
357
left: auto;
358
margin: 0px 5px 0 0px;
359
}
360
.cbp_tmtimeline > li .cbp_tmtime span:last-child {
361
font-size: 1.5em;
362
}
363
}
364
365
@media (max-width: 32em) {
366
.cbp-ntaccordion {
367
font-size: 70%;
368
}
369
}
370
/********************************/
371
/* AUTHOR LINK
372
********************************/
373
374
footer {
375
z-index: 100;
376
padding-top: 50px;
377
padding-bottom: 50px;
378
width: 100%;
379
bottom: 0;
380
left: 0;
381
}
382
383
footer p {
384
color: rgba(255, 255, 255, 0.8);
385
font-size: 16px;
386
opacity: 0;
387
font-family: 'Open Sans';
388
width: 100%;
389
word-wrap: break-word;
390
line-height: 25px;
391
-webkit-transform: translateX(-200px);
392
transform: translateX(-200px);
393
margin: 0;
394
}
395
396
footer .authorWindow a {
397
text-decoration: none;
398
}
399
400
footer p strong {
401
color: rgba(255, 255, 255, 0.9);
402
margin-left: 5px;
403
cursor: pointer;
404
}
405
406
.about-me-img {
407
width: 120px;
408
height: 120px;
409
left: 10px;
410
/* bottom: 30px; */
411
412
position: relative;
413
border-radius: 100px;
414
border: 1px solid #4A5F67;
415
}
416
417
.about-me-img img {
418
margin-top: 8px;
419
margin-left: 5px;
420
}
421
422
.authorWindow {
423
width: 600px;
424
background: #101F2E;
425
padding: 22px 20px 22px 20px;
426
border-radius: 5px;
427
overflow: hidden;
428
}
429
430
.authorWindowWrapper {
431
display: none;
432
left: 110px;
433
bottom: -20px;
434
padding-left: 30px;
435
position: absolute;
436
}
437
438
.trans {
439
opacity: 1;
440
-webkit-transform: translateX(0px);
441
transform: translateX(0px);
442
transition: all 500ms ease;
443
}
444
445
@media screen and (max-width: 768px) {
446
.authorWindow {
447
width: 210px;
448
}
449
.authorWindowWrapper {
450
bottom: -170px;
451
margin-bottom: 20px;
452
}
453
footer p {
454
font-size: 14px;
455
}
456
}
JavaScript
1
76
76
1
<div id="workexperience" class="sectionClass">
2
<div class="row ">
3
<div class="sectiontitle">
4
<h2>Work experience</h2>
5
<span class="headerLine"></span>
6
</div>
7
<div class="fullWidth eight columns">
8
<ul class="cbp_tmtimeline">
9
<li>
10
<div class="cbp_tmicon cbp_tmicon-phone">
11
<i class="faPra fa-briefcase"></i>
12
</div>
13
<div class="cbp_tmlabel wow fadeInRight animated">
14
<h3>Web developer</h3>
15
<div class="date">
16
<i class="fa fa-calendar"></i>April 2014 - Current
17
</div>
18
<h4><i class="fa fa-flag"></i>Davic Company, Bratislava</h4>
19
<p class="projectParagraph">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Fugit obcaecati ipsa quae, iusto laudantium qui, nisi eum modi perspiciatis quasi facilis corporis iure soluta enim incidunt itaque aspernatur sequi tempora.</p>
20
</div>
21
</li>
22
<li>
23
<div class="cbp_tmicon cbp_tmicon-screen">
24
<i class="faPra fa-briefcase"></i>
25
</div>
26
<div class="cbp_tmlabel wow fadeInRight animated">
27
<h3>Web designer</h3>
28
<h4><i class="fa fa-flag"></i>Fannous Company, Prague</h4>
29
<div class="date"><i class="fa fa-calendar"></i>June 2012 - April 2014</div>
30
<p class="projectParagraph">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt quasi perspiciatis, aliquid sed maiores accusamus. Adipisci quidem nostrum quos quae doloremque esse a, ipsum earum, recusandae omnis dignissimos et sint.</p>
31
</div>
32
</li>
33
<li>
34
<div class="cbp_tmicon cbp_tmicon-mail">
35
<i class="faPra fa-briefcase"></i>
36
</div>
37
<div class="cbp_tmlabel wow fadeInRight animated">
38
<h3>Web designer</h3>
39
<h4><i class="fa fa-flag"></i>Techixs Company, London</h4>
40
<div class="date"><i class="fa fa-calendar"></i>November 2009 - June 2012</div>
41
<p class="projectParagraph">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nulla labore atque alias ipsa, nam quod rerum repellat cumque, aliquam sequi vitae voluptatibus cum soluta incidunt tempore accusamus eius sed excepturi!Lorem ipsum dolor sit amet,
42
consectetur adipisicing elit. Tempora natus veritatis aperiam repellendus dolor vel, expedita assumenda eos, mollitia quae ullam esse voluptas vero. Dolores culpa eaque vitae eum quibusdam?</p>
43
44
</div>
45
</li>
46
<li>
47
<div class="cbp_tmicon cbp_tmicon-phone">
48
<i class="faPra fa-briefcase"></i>
49
</div>
50
<div class="cbp_tmlabel wow fadeInRight animated">
51
<h3>Freelancer</h3>
52
<div class="date"><i class="fa fa-calendar"></i>Januar 2006 - November 2009</div>
53
<p class="projectParagraph">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Esse iusto, possimus hic at quisquam, incidunt illo asperiores et nobis, qui nulla consequatur molestiae quibusdam expedita dignissimos? Iste eum velit quos.</p>
54
</div>
55
</li>
56
</ul>
57
</div>
58
</div>
59
</div>
60
61
<footer>
62
<div class="about-me-img">
63
<a href="http://jakubtursky.studenthosting.sk/?lang=en">
64
<img src="https://www.mediafire.com/convkey/722e/qk13jrjdq7z45k1zg.jpg" alt="Jakub Turský" width="110px" height="110px">
65
</a>
66
<div class="authorWindowWrapper">
67
<div class="authorWindow">
68
<p>Work experiences
69
<br> Created by <a href="http://jakubtursky.studenthosting.sk/?lang=en"><strong>Jakub Turský</strong></a>
70
<br> For next info about me you can visit me site ( click on my image, name, or copy url www.jakubtursky.studenthosting.sk/?lang=en )
71
<br>
72
</p>
73
</div>
74
</div>
75
</div>
76
</footer>
But if I were to use it on any other IDE, then what header links would I need for it? It does not seem to also work here, since WOW is not defined, but this is my first time working with this library so I’m unsure.
These are the errors I get:
Advertisement
Answer
Does this work?
JavaScript
1
7
1
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,900&amp" rel="stylesheet"/>
2
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=latin,latin-ext" rel="stylesheet"/>
3
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet"/>
4
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.6/animate.min.css" rel="stylesheet"/>
5
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
6
<script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js"></script>
7
JavaScript
1
8
1
new WOW().init();
2
3
/* AUTHOR LINK */
4
$('.about-me-img img, .authorWindowWrapper').hover(function() {
5
$('.authorWindowWrapper').stop().fadeIn('fast').find('p').addClass('trans');
6
}, function() {
7
//$('.authorWindowWrapper').stop().css('display', 'none').find('p').removeClass('trans');
8
});
JavaScript
1
456
456
1
body {
2
font-family: Open Sans, "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
3
font-size: 13px;
4
color: #666;
5
position: relative;
6
-webkit-font-smoothing: antialiased;
7
margin: 0;
8
}
9
10
* {
11
-webkit-box-sizing: border-box;
12
-moz-box-sizing: border-box;
13
box-sizing: border-box;
14
}
15
16
body,
17
div,
18
dl,
19
dt,
20
dd,
21
ul,
22
ol,
23
li,
24
h1,
25
h2,
26
h3,
27
h4,
28
h5,
29
h6,
30
pre,
31
form,
32
p,
33
blockquote,
34
th,
35
td {
36
margin: 0;
37
padding: 0;
38
font-size: 13px;
39
direction: ltr;
40
}
41
42
.sectionClass {
43
padding: 80px 0px 50px 0px;
44
position: relative;
45
display: block;
46
background: rgb(249, 249, 249);
47
}
48
49
.row {
50
width: 980px;
51
height: 100%;
52
max-width: 100%;
53
margin: 0 auto;
54
}
55
56
.row:before,
57
.row:after {
58
content: "";
59
display: table;
60
}
61
62
.sectiontitle {
63
background-position: center;
64
text-align: center;
65
min-height: 20px;
66
}
67
68
.sectiontitle h2 {
69
font-size: 30px;
70
color: #222;
71
margin-bottom: 0px;
72
padding-right: 10px;
73
padding-left: 10px;
74
}
75
76
.headerLine {
77
width: 160px;
78
height: 2px;
79
display: inline-block;
80
background: #101F2E;
81
}
82
83
.fullWidth {
84
width: 100%;
85
display: table;
86
float: none;
87
padding: 0;
88
min-height: 1px;
89
height: 100%;
90
position: relative;
91
}
92
/********************************/
93
/* SECTION WORK EXPERIENCE
94
********************************/
95
96
#work-experience .sectiontitle .headerLine {
97
width: 280px;
98
}
99
100
#work-experience .headerline {
101
width: 280px;
102
}
103
104
.cbp_tmtimeline {
105
margin: 60px 30px 0 0;
106
padding: 0;
107
list-style: none;
108
position: relative;
109
}
110
111
.cbp_tmtimeline:before {
112
content: '';
113
position: absolute;
114
top: 3%;
115
bottom: 0;
116
width: 10px;
117
background: #324454;
118
left: 13%;
119
height: 100%;
120
}
121
122
.cbp_tmtimeline li:last-child:before {
123
content: initial;
124
}
125
126
.cbp_tmtimeline > li .cbp_tmtime {
127
display: block;
128
width: 25%;
129
padding-right: 100px;
130
position: absolute;
131
}
132
133
.cbp_tmtimeline > li .cbp_tmtime span {
134
display: block;
135
text-align: right;
136
}
137
138
.cbp_tmtimeline > li .cbp_tmtime span:first-child {
139
font-size: 0.9em;
140
color: #bdd0db;
141
}
142
143
.cbp_tmtimeline > li .cbp_tmtime span:last-child {
144
font-size: 2.9em;
145
color: #3594cb;
146
}
147
148
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmtime span:last-child {
149
color: #6cbfee;
150
}
151
152
.cbp_tmtimeline > li .cbp_tmlabel {
153
margin: 0 0 15px 25%;
154
background: rgba(50, 68, 84, 1);
155
color: #FFF;
156
padding: 30px;
157
font-size: 1.2em;
158
font-weight: 300;
159
line-height: 1.4;
160
font-family: 'Open Sans';
161
position: relative;
162
border-radius: 5px;
163
min-height: 150px;
164
}
165
166
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel {
167
background: #2B3A48;
168
}
169
170
.cbp_tmtimeline > li .cbp_tmlabel h3 {
171
margin-top: 0px;
172
color: white;
173
font-size: 20px;
174
margin-bottom: 5px;
175
padding: 0 0 10px 0;
176
border-bottom: 1px solid rgba(255, 255, 255, 0.4);
177
font-family: 'Open Sans', sans-serif;
178
font-weight: bold;
179
}
180
181
.cbp_tmtimeline > li .cbp_tmlabel h4 {
182
opacity: 0.7;
183
color: rgba(255, 255, 255, 1);
184
letter-spacing: 0px;
185
font-family: 'Source Sans Pro', sans-serif;
186
font-size: 18px;
187
line-height: 1.2em;
188
font-weight: 600;
189
padding: 0;
190
padding-bottom: 10px;
191
margin: 0;
192
text-align: left;
193
}
194
195
.cbp_tmtimeline > li .cbp_tmlabel h4 i {
196
margin-right: 5px;
197
vertical-align: middle;
198
}
199
200
.cbp_tmtimeline > li .cbp_tmlabel:after {
201
right: 100%;
202
border: solid transparent;
203
content: " ";
204
height: 0;
205
width: 0;
206
position: absolute;
207
pointer-events: none;
208
border-right-color: rgba(50, 68, 84, 1);
209
border-width: 10px;
210
top: 70px;
211
}
212
213
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
214
border-right-color: #2B3A48;
215
}
216
217
.cbp_tmtimeline > li .cbp_tmicon {
218
width: 150px;
219
height: 150px;
220
top: 3%;
221
speak: none;
222
font-style: normal;
223
font-weight: normal;
224
font-variant: normal;
225
text-transform: none;
226
font-size: 1.4em;
227
line-height: 40px;
228
-webkit-font-smoothing: antialiased;
229
position: absolute;
230
color: #151515;
231
background: #324454;
232
border-radius: 50%;
233
text-align: center;
234
left: 8%;
235
margin: 0 0 0 -25px;
236
}
237
238
.cbp_tmtimeline li {
239
margin-bottom: 70px;
240
position: relative;
241
}
242
243
.sectionClassProject {
244
position: relative;
245
display: block;
246
/* background: #f7f7f7; */
247
248
margin: 0 auto;
249
padding: 80px 1.875em 3.125em;
250
}
251
252
.projectParagraph {
253
font-size: 18px;
254
margin: 0.5em 0 0;
255
font-family: 'Source Sans Pro', serif;
256
}
257
258
.projectParagraphLink {
259
font-size: 15px !important;
260
font-weight: 500 !important;
261
margin-top: 50px !important;
262
margin-bottom: 0px;
263
text-align: right;
264
}
265
266
.projectParagraphLink a {
267
color: white;
268
text-decoration: underline;
269
}
270
271
.cbp_tmicon img {
272
width: 100%;
273
}
274
275
.faPra {
276
display: inline-block;
277
font: normal normal normal 14px/1 FontAwesome;
278
text-rendering: auto;
279
-webkit-font-smoothing: antialiased;
280
-moz-osx-font-smoothing: grayscale;
281
font-size: 70px;
282
vertical-align: middle;
283
color: white;
284
line-height: 150px;
285
}
286
287
.label {
288
background-color: rgba(255, 255, 255, 0.3);
289
border-radius: 3px;
290
color: #FFFFFF;
291
display: inline;
292
font-size: 12px;
293
font-weight: bold;
294
margin-right: 10px;
295
padding: 5px 15px;
296
}
297
298
.date {
299
color: #BFC3C7;
300
display: block;
301
font-size: 14px;
302
font-weight: 600;
303
position: absolute;
304
top: 30px;
305
right: 20px;
306
}
307
308
.date i {
309
margin-right: 8px;
310
vertical-align: top;
311
font-size: 18px;
312
line-height: 20px;
313
}
314
315
@media (max-width: 1024px) {
316
.cbp_tmtimeline:before {
317
display: none;
318
}
319
.cbp_tmtimeline > li .cbp_tmtime {
320
width: 100%;
321
position: relative;
322
padding: 0 0 20px 0;
323
}
324
.cbp_tmtimeline > li .cbp_tmtime span {
325
text-align: left;
326
}
327
.cbp_tmtimeline > li .cbp_tmlabel {
328
margin: 30px 0 70px 0;
329
padding: 50px 30px 30px 30px;
330
font-weight: 400;
331
font-size: 95%;
332
float: left;
333
}
334
.cbp_tmtimeline > li .cbp_tmlabel:after {
335
right: auto;
336
border-right-color: transparent;
337
border-bottom-color: rgb(50, 68, 84);
338
top: -20px;
339
}
340
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmlabel:after {
341
border-right-color: transparent;
342
border-bottom-color: rgb(43, 58, 72);
343
left: 65px;
344
}
345
.cbp_tmtimeline > li:nth-child(even) .cbp_tmlabel:after {
346
right: 65px;
347
}
348
.cbp_tmtimeline > li:nth-child(odd) .cbp_tmicon {
349
position: relative;
350
float: left;
351
left: auto;
352
margin: 0px 5px 0 0px;
353
}
354
.cbp_tmtimeline > li:nth-child(even) .cbp_tmicon {
355
position: relative;
356
float: right;
357
left: auto;
358
margin: 0px 5px 0 0px;
359
}
360
.cbp_tmtimeline > li .cbp_tmtime span:last-child {
361
font-size: 1.5em;
362
}
363
}
364
365
@media (max-width: 32em) {
366
.cbp-ntaccordion {
367
font-size: 70%;
368
}
369
}
370
/********************************/
371
/* AUTHOR LINK
372
********************************/
373
374
footer {
375
z-index: 100;
376
padding-top: 50px;
377
padding-bottom: 50px;
378
width: 100%;
379
bottom: 0;
380
left: 0;
381
}
382
383
footer p {
384
color: rgba(255, 255, 255, 0.8);
385
font-size: 16px;
386
opacity: 0;
387
font-family: 'Open Sans';
388
width: 100%;
389
word-wrap: break-word;
390
line-height: 25px;
391
-webkit-transform: translateX(-200px);
392
transform: translateX(-200px);
393
margin: 0;
394
}
395
396
footer .authorWindow a {
397
text-decoration: none;
398
}
399
400
footer p strong {
401
color: rgba(255, 255, 255, 0.9);
402
margin-left: 5px;
403
cursor: pointer;
404
}
405
406
.about-me-img {
407
width: 120px;
408
height: 120px;
409
left: 10px;
410
/* bottom: 30px; */
411
412
position: relative;
413
border-radius: 100px;
414
border: 1px solid #4A5F67;
415
}
416
417
.about-me-img img {
418
margin-top: 8px;
419
margin-left: 5px;
420
}
421
422
.authorWindow {
423
width: 600px;
424
background: #101F2E;
425
padding: 22px 20px 22px 20px;
426
border-radius: 5px;
427
overflow: hidden;
428
}
429
430
.authorWindowWrapper {
431
display: none;
432
left: 110px;
433
bottom: -20px;
434
padding-left: 30px;
435
position: absolute;
436
}
437
438
.trans {
439
opacity: 1;
440
-webkit-transform: translateX(0px);
441
transform: translateX(0px);
442
transition: all 500ms ease;
443
}
444
445
@media screen and (max-width: 768px) {
446
.authorWindow {
447
width: 210px;
448
}
449
.authorWindowWrapper {
450
bottom: -170px;
451
margin-bottom: 20px;
452
}
453
footer p {
454
font-size: 14px;
455
}
456
}
JavaScript
1
82
82
1
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,900&amp" rel="stylesheet"/>
2
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=latin,latin-ext" rel="stylesheet"/>
3
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet"/>
4
<link href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.6/animate.min.css" rel="stylesheet"/>
5
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
6
<script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.min.js"></script>
7
<div id="workexperience" class="sectionClass">
8
<div class="row ">
9
<div class="sectiontitle">
10
<h2>Work experience</h2>
11
<span class="headerLine"></span>
12
</div>
13
<div class="fullWidth eight columns">
14
<ul class="cbp_tmtimeline">
15
<li>
16
<div class="cbp_tmicon cbp_tmicon-phone">
17
<i class="faPra fa-briefcase"></i>
18
</div>
19
<div class="cbp_tmlabel wow fadeInRight animated">
20
<h3>Web developer</h3>
21
<div class="date">
22
<i class="fa fa-calendar"></i>April 2014 - Current
23
</div>
24
<h4><i class="fa fa-flag"></i>Davic Company, Bratislava</h4>
25
<p class="projectParagraph">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Fugit obcaecati ipsa quae, iusto laudantium qui, nisi eum modi perspiciatis quasi facilis corporis iure soluta enim incidunt itaque aspernatur sequi tempora.</p>
26
</div>
27
</li>
28
<li>
29
<div class="cbp_tmicon cbp_tmicon-screen">
30
<i class="faPra fa-briefcase"></i>
31
</div>
32
<div class="cbp_tmlabel wow fadeInRight animated">
33
<h3>Web designer</h3>
34
<h4><i class="fa fa-flag"></i>Fannous Company, Prague</h4>
35
<div class="date"><i class="fa fa-calendar"></i>June 2012 - April 2014</div>
36
<p class="projectParagraph">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt quasi perspiciatis, aliquid sed maiores accusamus. Adipisci quidem nostrum quos quae doloremque esse a, ipsum earum, recusandae omnis dignissimos et sint.</p>
37
</div>
38
</li>
39
<li>
40
<div class="cbp_tmicon cbp_tmicon-mail">
41
<i class="faPra fa-briefcase"></i>
42
</div>
43
<div class="cbp_tmlabel wow fadeInRight animated">
44
<h3>Web designer</h3>
45
<h4><i class="fa fa-flag"></i>Techixs Company, London</h4>
46
<div class="date"><i class="fa fa-calendar"></i>November 2009 - June 2012</div>
47
<p class="projectParagraph">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nulla labore atque alias ipsa, nam quod rerum repellat cumque, aliquam sequi vitae voluptatibus cum soluta incidunt tempore accusamus eius sed excepturi!Lorem ipsum dolor sit amet,
48
consectetur adipisicing elit. Tempora natus veritatis aperiam repellendus dolor vel, expedita assumenda eos, mollitia quae ullam esse voluptas vero. Dolores culpa eaque vitae eum quibusdam?</p>
49
50
</div>
51
</li>
52
<li>
53
<div class="cbp_tmicon cbp_tmicon-phone">
54
<i class="faPra fa-briefcase"></i>
55
</div>
56
<div class="cbp_tmlabel wow fadeInRight animated">
57
<h3>Freelancer</h3>
58
<div class="date"><i class="fa fa-calendar"></i>Januar 2006 - November 2009</div>
59
<p class="projectParagraph">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Esse iusto, possimus hic at quisquam, incidunt illo asperiores et nobis, qui nulla consequatur molestiae quibusdam expedita dignissimos? Iste eum velit quos.</p>
60
</div>
61
</li>
62
</ul>
63
</div>
64
</div>
65
</div>
66
67
<footer>
68
<div class="about-me-img">
69
<a href="http://jakubtursky.studenthosting.sk/?lang=en">
70
<img src="https://www.mediafire.com/convkey/722e/qk13jrjdq7z45k1zg.jpg" alt="Jakub Turský" width="110px" height="110px">
71
</a>
72
<div class="authorWindowWrapper">
73
<div class="authorWindow">
74
<p>Work experiences
75
<br> Created by <a href="http://jakubtursky.studenthosting.sk/?lang=en"><strong>Jakub Turský</strong></a>
76
<br> For next info about me you can visit me site ( click on my image, name, or copy url www.jakubtursky.studenthosting.sk/?lang=en )
77
<br>
78
</p>
79
</div>
80
</div>
81
</div>
82
</footer>