-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathindex.html
127 lines (126 loc) · 6.08 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html>
<head>
<!--<script src="https://alwingulla.com/88/tag.min.js" data-zone="41070" async data-cfasync="false"></script>-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Skyhax</title>
<!--<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3407930819317243"
crossorigin="anonymous"></script>-->
<link rel="icon" type="image/x-icon" href="./media/favicons/skyhax.png">
<meta name="description" content="Skyhax - Leading the future of web technology and bypassing internet censorship.">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="./lib/styles/index.css" />
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!--<script src="https://az622064.vo.msecnd.net/scripts/apeads.js?key=913baf3a-ebd8-4dd1-8adf-0f1d705cc9a8"></script>-->
</head>
<body>
<div id="loader">
<div class="noflex">
<div class="loader">
<div style="--i: 1"></div>
<div style="--i: 2"></div>
<div style="--i: 3"></div>
<div style="--i: 4"></div>
</div>
<br>
<br>
<p style="color: white;">Imagine this loading animation is a actual good one while you wait ;)</p></div>
</div>
<div class="navbar">
<div class="logo" onclick="location.reload();">
<img onclick="location.reload();" class="logoimg animate__animated animate__rollIn animate__delay-3s" src="./media/logo.gif" alt="Logo">
</div>
<div class="buttons animate__animated animate__zoomIn animate__delay-3s">
<button class="button" onclick="scrollToSection('.home')">Home</button>
<button class="button" onclick="scrollToSection('.duck')">DuckOS</button>
<button class="button" onclick="scrollToSection('.kasm')">Kasm</button>
<button class="button" onclick="scrollToSection('.contact')">Contact</button>
<!--<button class="button" onclick="scrollToSection('.ads')">Advertisement</button>-->
</div>
</div>
<div class="section home">
<div class="content">
<h1 style="font-size: 50px;" class="animate__animated animate__backInDown animate__delay-3s">Skyhax</h1>
<p class="animate__animated animate__backInUp animate__delay-3s">Acheiving internet peace through non-profit ways. DuckOS, and a Free Kasm Server.</p>
</div>
</div>
<div class="section duck animate__animated animate__fadeIn animate__delay-3s">
<div class="content">
<h2>DuckOS</h2>
<p>A modern, futuristic looking operating system themed webapp - Fake terminals, interactive and working settings page, app store, and more!</p>
<img class="duckss" src="./media/index/duckss.png">
<br>
<br>
<a href="./directories/duckos.html" id="fullscreenredirect">
<button class="btn" id="fullscreenredirect" role="button">Boot DuckOS</button>
</a>
<p>By using DuckOS, you agree to our <b><a href="./directories/tos.html">Terms of Service</a></b></p>
</div>
</div>
<div class="section kasm animate__animated animate__fadeIn animate__delay-3s">
<div class="content">
<h2>Kasm</h2>
<p>A free cloud computer right inside your browser! Run your favorite apps or operating systems right here!</p>
<img class="duckss" src="./media/index/kasmss.png">
<br>
<br>
<a href="https://kasm.duckos.app" target="_blank">
<button class="btn" role="button">Go to Kasm</button>
</a>
<p>By using our Kasm server, you agree to our <b><a href="./directories/tos.html">Terms of Service</a></b></p>
</div>
</div>
<div class="section contact animate__animated animate__fadeIn animate__delay-3s">
<div class="content">
<h2>Contact</h2>
<p>Here are some of our socials you can contact us with</p>
<a href="https://dsc.gg/skyhax">
<button class="btn" role="button" target="_blank">Discord Server</button>
</a>
<a href="https://github.com/X3N1THZ/DuckOS">
<button class="btn" role="button" target="_blank">Github</button>
</a>
<br>
<br>
<iframe src="https://discord.com/widget?id=1129811269709475941&theme=dark" width="350" height="500" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
</div>
</div>
<!--<div class="section ads animate__animated animate__fadeIn animate__delay-4s">
<div class="content">
<h2>Advertisement</h2>
<p>This single section of ads keeps our entire website funded. Please reconsider your choice to use a adblocker :)<br>Consider supporting us even further by donating from the bottom left corner of the page!</p>
</div>
<iframe data-aa='2300318' src='//ad.a-ads.com/2300318?size=728x90' style='width:728px; height:90px; border:0px; padding:0; overflow:hidden; background-color: transparent;'></iframe>
</div>-->
<script>
function scrollToSection(sectionClass) {
const section = document.querySelector(sectionClass);
if (section) {
section.scrollIntoView({
behavior: 'smooth'
});
}
}
window.addEventListener('load', function() {
var loader = document.getElementById('loader');
var content = document.getElementById('content');
setTimeout(function() {
loader.classList.add('hide');
loader.style.display = 'none';
content.style.display = 'block';
document.body.style.overflow = 'auto';
}, 2500);
});
function setOverflowAuto() {
document.body.style.overflow = 'auto';
}
window.addEventListener('load', function() {
setTimeout(setOverflowAuto, 2500);
});
</script>
<script src="./lib/scripts/basic.js"></script>
<script src="./lib/scripts/init.js"></script>
</body>
</html>