-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (46 loc) · 1.69 KB
/
index.html
File metadata and controls
50 lines (46 loc) · 1.69 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Experiments</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="homeLink">
<a href="/">Home</a>
</div>
<section>
<div class="headerBackdrop">
<h1>Design <br>Experiment</h1>
</div>
<div>
<p>
A bunch of tiny design excercises exploring the use of typography and interactive elements.
</p>
<ul>
<li><a href="background_animation">Cool background animation</a></li>
<li>Fancy <a href="photography">photography portfolio</a> for a friend</li>
<li>Mockup for a <a href="skiTypography">ski company</a></li>
<li>Design for an <a href="scrollAnimation">animation portfolio</a></li>
<li><a href="/units/">Attempt at neumorphism</a></li>
<li>Maybe this <a href="stopwatch">minimalist stopwatch</a></li>
<li><a href="retro">Kinda retro looking site</a> with svg filters</li>
<li>More <a href="rgbsplit">interactive SVG filters</a>!</li>
<li>Another example with <a href="popartTitle">micro interactions</a></li>
</ul>
</div>
</section>
</body>
<script>
let style = getComputedStyle(document.getElementsByTagName("li")[0])
document.documentElement.style.setProperty('--text-color', style.color)
</script>
<!--
<script>
let possibleColors = ['#00ff6a', '#ffeb3b', '#5de9ff', '#ff4040']
let randomColor = possibleColors[~~(Math.random() * possibleColors.length)]
document.documentElement.style.setProperty('--underline-color', randomColor)
</script>-->
</html>