-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (90 loc) · 3.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css">
<title>Jake Drysdale</title>
<script src="typing-animation.js"></script> <!-- Add the typing animation script -->
<style>
.flicker-container {
animation: flicker 2.5s linear infinite;
animation-play-state: running;
}
@keyframes flicker {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.9;
}
}
.stop-flicker {
animation-play-state: paused;
opacity: 1; /* Set opacity to 1 when animation is paused */
}
@media (max-width: 768px) { /* Adjust the max-width as needed */
#typing-title {
font-size: 25px; /* Adjust the font size as needed */
}
}
</style>
</head>
<body>
<script src="typing-animation.js"></script> <!-- Add the typing animation script -->
<header class="header-container">
<div class="container">
<div class="typed-out typing-title" id="typing-title">Jake Drysdale // Drytek</div>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="tools.html">Production Tools</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="music.html">Music</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<style>
/* Adjust the border size and center the content */
.content {
border: 1px solid limegreen;
border-radius: 5px;
/*padding: 10px;*/
margin: 200px auto; /* Center the content horizontally */
max-width: 800px; /* Adjust the max width as needed */
}
</style>
<section class="content flicker-container"> <!-- Add the flicker-container class here -->
<h2>About Me</h2>
<p>
<br>Hello, I’m Jake!<br><br>
I work on audio and machine learning research with the aim to develop systems for enhancing the music production process and discovering new sounds.<br><br>
My PhD thesis, titled “Deep Learning for Sample-based Music Production”, proposes deep learning-based systems for analysing electronic music and generating samples.<br><br>
Outside of research I create music under the alias <a class="social-link" href="https://soundcloud.com/drytekofficial">Drytek</a> and promote music events as <a class="social-link" href="https://www.instagram.com/saturn_sound_/">Saturn Sound</a>.
</p>
</section>
<div class="gif-container">
<img src="./gan_gen.gif" alt="generating drums">
</div>
<!-- <section class="content flicker-container">
<h2>Projects</h2>
<p>Here are some of my recent projects...</p>
</section>
-->
<footer>
<p>© 2023 Jake Drysdale.</p>
</footer>
<script>
setTimeout(() => {
document.querySelectorAll('.flicker-container').forEach((element) => {
element.classList.add('stop-flicker');
});
},3000); // 3000 milliseconds = 3 seconds
</script>
<div class="dark-green-overlay"></div>
<div class="overlay"></div>
</body>
</html>