-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume-v2.js
89 lines (72 loc) · 2.47 KB
/
resume-v2.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// ========================================================================= //
// Typed Js
// ========================================================================= //
$(document).ready(function () {
'use strict';
var typed = $('.typed');
$(function () {
typed.typed({
strings: [
'Hi there :)!^700 My name is Christian Addy',
'but you can just call me Chris.',
'My IT work experience has been in 3 fields:^500',
'Customer Support, Frontend Developer and...',
'Integration Engineer roles^500.',
'Building web projects in my free time...',
'and exploring different technologies...',
'are things I am most passionate about^400.',
'Check out these projects and more about me below.',
'Thank you for stopping by...',
'and have a wonderful day :) ^1500',
'Intro loop begins in 3^1000 2^1000 1^100'
],
typeSpeed: 30,
loop: true,
startDelay: 200
});
});
});
// ================================================== //
// ================================================== //
// Spinner
// ================================================== //
$(document).ready(function () {
//Preloader
preloaderFadeOutTime = 1500;
function hidePreloader() {
var preloader = $('.spinner-wrapper');
preloader.fadeOut(preloaderFadeOutTime);
}
hidePreloader();
});
// $(document).ready(function () {
// Preloader
// FadeTime = 8000;
// function showMainProfileImage() {
// var mainProfilepic = $('.cover-img');
// mainProfilepic.fadeIn(FadeTime);
// }
// showMainProfileImage();
// });
// ================================================== //
// ================================================== //
// Show description of crossover products on small and extra small screens
// ================================================== //
// Example 1
// $(document).ready(function () {
// $('.crossover-product-description-sm-xs').click(function () {
// $(this).toggleClass('show-title-sm-xs');
// });
// });
// Example 2
$(function () {
$('[data-toggle="crossover-product-description-sm-xs"]').tooltip();
});
// ================================================== //
AOS.init({
delay: 200, // values from 0 to 3000, with step 50ms
duration: 1200, // values from 0 to 3000, with step 50ms
easing: 'ease', // default easing for AOS animations
once: true, // whether animation should happen only once - while scrolling down
mirror: false // whether elements should animate out while scrolling past them
});