Skip to content

Commit 48d1aba

Browse files
authored
Merge pull request #113 from buneeIsSlo/bunee-jitter-404
Add Jitter template
2 parents f55fd6d + 5ba2439 commit 48d1aba

File tree

5 files changed

+502
-0
lines changed

5 files changed

+502
-0
lines changed

__screenshots/jitter.png

141 KB
Loading

data/pages.json

+5
Original file line numberDiff line numberDiff line change
@@ -133,5 +133,10 @@
133133
"description": "Spooky 404",
134134
"imageUrl": "https://raw.githubusercontent.com/tsparticles/404-templates/main/__screenshots/spooky.png?raw=true",
135135
"url": "spooky/404.html"
136+
},
137+
{
138+
"description": "Jitter 404",
139+
"imageUrl": "https://raw.githubusercontent.com/tsparticles/404-templates/main/__screenshots/jitter.png?raw=true",
140+
"url": "jitter/404.html"
136141
}
137142
]

jitter/404.html

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<!-- Google tag (gtag.js) -->
5+
<script
6+
async
7+
src="https://www.googletagmanager.com/gtag/js?id=G-1752YPLP7H"
8+
></script>
9+
<script>
10+
window.dataLayer = window.dataLayer || [];
11+
function gtag() {
12+
dataLayer.push(arguments);
13+
}
14+
gtag("js", new Date());
15+
16+
gtag("config", "G-1752YPLP7H");
17+
</script>
18+
19+
<meta charset="UTF-8" />
20+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
21+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
22+
<link rel="preconnect" href="https://fonts.googleapis.com" />
23+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
24+
<link
25+
href="https://fonts.googleapis.com/css2?family=Space+Mono&display=swap"
26+
rel="stylesheet"
27+
/>
28+
<title>404-Jitter</title>
29+
<link rel="stylesheet" href="./styles.css" />
30+
</head>
31+
32+
<body>
33+
<main>
34+
<div id="tsparticles" aria-hidden="true"></div>
35+
<section>
36+
<div class="text">
37+
<h1 data-value="404">404</h1>
38+
<a href="#" id="back" data-value="Go back">Go back</a>
39+
</div>
40+
</section>
41+
</main>
42+
<script
43+
type="text/javascript"
44+
src="https://cdn.jsdelivr.net/npm/tsparticles@2/tsparticles.bundle.min.js"
45+
></script>
46+
<script src="tsparticles.engine.min.js"></script>
47+
<script src="./app.js"></script>
48+
</body>
49+
</html>

0 commit comments

Comments
 (0)