-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (49 loc) · 1.96 KB
/
index.html
File metadata and controls
57 lines (49 loc) · 1.96 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
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio</title>
<base href="/" />
<link rel="stylesheet" href="css/app.css" />
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
<!-- Important: Increment the version parameter whenever you update MudBlazor to prevent caching issues -->
<link href="_content/MudBlazor/MudBlazor.min.css?v=1" rel="stylesheet" />
<!-- If you add any scoped CSS files, uncomment the following to load them
<link href="Portfolio.styles.css" rel="stylesheet" /> -->
</head>
<body>
<div id="app">
<svg class="loading-progress">
<circle r="40%" cx="50%" cy="50%" />
<circle r="40%" cx="50%" cy="50%" />
</svg>
<div class="loading-progress-text"></div>
</div>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="." class="reload">Reload</a>
<span class="dismiss">🗙</span>
</div>
<script src="_framework/blazor.webassembly.js"></script>
<!-- Important: Increment the version parameter whenever you update MudBlazor to prevent caching issues -->
<script src="_content/MudBlazor/MudBlazor.min.js?v=1"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
</body>
</html>
<script>
function animateBlobs() {
const blobs = document.querySelectorAll(".blob");
blobs.forEach((blob, i) => {
gsap.to(blob, {
x: () => Math.random() * window.innerWidth - window.innerWidth / 2,
y: () => Math.random() * window.innerHeight - window.innerHeight / 2,
duration: 8 + Math.random() * 4,
repeat: -1,
yoyo: true,
ease: "sine.inOut",
delay: i * 0.5
});
});
}
</script>