-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.html
76 lines (67 loc) · 2.68 KB
/
error.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
<!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>Error</title>
<link rel="apple-touch-icon" sizes="180x180" href="favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon_io/favicon-16x16.png">
<link rel="manifest" href="favicon_io/site.webmanifest">
<link rel="stylesheet" href="css/error.css">
<script src="scripts/tata.js" defer></script>
</head>
<body>
<section class="wrapper">
<div class="container">
<div id="scene" class="scene" data-hover-only="false">
<div class="circle" data-depth="1.2"></div>
<div class="one" data-depth="0.9">
<div class="content">
<span class="piece"></span>
<span class="piece"></span>
<span class="piece"></span>
</div>
</div>
<div class="two" data-depth="0.60">
<div class="content">
<span class="piece"></span>
<span class="piece"></span>
<span class="piece"></span>
</div>
</div>
<div class="three" data-depth="0.40">
<div class="content">
<span class="piece"></span>
<span class="piece"></span>
<span class="piece"></span>
</div>
</div>
<p class="p404" data-depth="0.10">OOPS</p>
</div>
<div class="text">
<article>
<p>Uh oh! Use Chrome/Brave/IE</p>
<p style="font-weight: bold;">ERROR : Crashpad_SimulatedCrash</p>
<button id="back">Go back</button>
</article>
</div>
</div>
</section>
<script>
function showErrorToast() {
tata.error("Error", "Sorting algorithm requires Chromium engine to show real time space and complexities. Please use Google Chrome, Brave or IE", {
// duration: 10000,
holding: true,
position: 'br',
animate: 'slide'
});
}
window.onload = showErrorToast;
document.getElementById("back").addEventListener("click", () => {
window.location.href = "index.html";
});
</script>
</body>
</html>