-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
132 lines (119 loc) · 4.72 KB
/
index.html
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="index.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=League+Spartan:wght@100;200;300;400&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css" />
</head>
<body>
<div class="head">
<nav>
<a href="/">
<img class="logo" src="logo.png" alt="logo">
</a>
</nav>
</div>
<div class="top">
<h1 class="letter">
<span class="position bold"> Data Scientist</span></span><br>
<span class="position"> Web programmer </span><br>
<span id="typed" class="position"></span>
</h1>
</div>
<div class="photo">
<div class="photo-content"></div>
</div>
<div class="information-container">
<div class="information">
<h2 class="title child">Who am I? <br> <span id="myName" class="name"></span></h2>
<p class="information-contnent child">
As a data science professional, I strive to provide smart business solutions by creating informative and beautiful dashboards, analysis, prediction and classification models.
<br>
<br>
My skills allow me to lead the development cycle from analyzing the subject area to building the infrastructure. This allows me to see the full picture of creating smart applications. Solve issues of information presentation, creating transparency of systems and reliability.
</p>
</div>
</div>
<div>
<h3 class="title-projects">
Projects
</h3>
</div>
<div class="slides">
<div class="swiper mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide"><img src="./Screenshot_17.png" alt=""></div>
<div class="swiper-slide"><img src="./Screenshot_18.png" alt=""></div>
<div class="swiper-slide"><img src="./Screenshot_19.png" alt=""></div>
<div class="swiper-slide"><img src="./Screenshot_20.png" alt=""></div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
<footer class="footer">
<div class="footer-nav">
<div class="footer-content">
<div class="col1">
<a href="/">
<img class="logo" src="logo.png" alt="logo">
</a>
<p class="copyright" style="font-weight: 300;">Designed and Built by Serobabov Aleksandr</p>
</div>
<div class="col2">
<a href="https://github.com/Sank-WoT">GitHub</a>
<a href="https://spb.hh.ru/resume/74cbea08ff08fd61800039ed1f4e6c576f7758">hh.ru</a>
<a href="mailto:aserobabow95@mail.ru">Email</a>
</div>
</div>
</div>
</footer>
</body>
<script src="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js"></script>
<script src="https://unpkg.com/typed.js@2.0.16/dist/typed.umd.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<!-- Initialize Swiper -->
<script>
const swiper = new Swiper(".mySwiper", {
spaceBetween: 30,
pagination: {
el: ".swiper-pagination",
clickable: true,
},
});
</script>
<script>
let typed2 = new Typed('#typed', {
strings: ['I create <i>smart</i> systems'],
typeSpeed: 50,
});
var isShowName = false;
$(window).scroll(function(){
const offset = $('.information-container').offset();
if ($(this).scrollTop() > offset.top) {
if (isShowName == false) {
let typed = new Typed('#myName', {
strings: ['Serobabov Aleksandr'],
typeSpeed: 50,
});
}
isShowName = true;
}
});
</script>
<script>
fetch('http://localhost:1337/photos/1')
.then(response => response.json())
.then(data => {
console.log(data);
console.log(data['photo']['url']);
})
.catch(error => {
console.error(error);
})
</script>
</html>