-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
123 lines (113 loc) · 5.39 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="icon" href="./img/hydrazine.png">
<title>Hydrazine</title>
<meta charset="UTF-8">
<meta name="description" content="The best Minecraft: Bedrock Edition utility mod available.">
<meta name="keywords" content="Hydrazine Client, Hydrazine, Minecraft hack clients, Minecraft bedrock hacks, hydrazine">
<meta name="author" content="Celestia, Expando">
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow">
<meta property="og:type" content="site">
<meta property="og:title" content="Hydrazine Client">
<meta property="og:description" content="The best Minecraft: Bedrock Edition utility mod available.">
<meta property="og:url" content="Coming Soon">
<meta property="og:image" content="img/logo.png">
<meta property="og:image:width" content="400" />
<meta property="og:image:height" content="400" />
<meta property="og:image:type" content="image/png" />
<meta itemprop="name" content="None lol">
<meta itemprop="description" content="The best Minecraft: Bedrock Edition utility mod available.">
<meta itemprop="image" content="img/logo.png">
<meta name="theme-color" content="#2b7bfc">
<meta name=”viewport” content=”width=device-width, initial-scale="1″>
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Ubuntu&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet" type="text/css">
</head>
<body>
<script>
var TxtRotate = function(el, toRotate, period) {
this.toRotate = toRotate;
this.el = el;
this.loopNum = 0;
this.period = parseInt(period, 10) || 2000;
this.txt = '';
this.tick();
this.isDeleting = false;
};
TxtRotate.prototype.tick = function() {
var i = this.loopNum % this.toRotate.length;
var fullTxt = this.toRotate[i];
if (this.isDeleting) {
this.txt = fullTxt.substring(0, this.txt.length - 1);
} else {
this.txt = fullTxt.substring(0, this.txt.length + 1);
}
this.el.innerHTML = '<span class="wrap">'+this.txt+'</span>';
var that = this;
var delta = 300 - Math.random() * 100;
if (this.isDeleting) { delta /= 2; }
if (!this.isDeleting && this.txt === fullTxt) {
delta = this.period;
this.isDeleting = true;
} else if (this.isDeleting && this.txt === '') {
this.isDeleting = false;
this.loopNum++;
delta = 500;
}
setTimeout(function() {
that.tick();
}, delta);
};
window.onload = function() {
var elements = document.getElementsByClassName('txt-rotate');
for (var i=0; i<elements.length; i++) {
var toRotate = elements[i].getAttribute('data-rotate');
var period = elements[i].getAttribute('data-period');
if (toRotate) {
new TxtRotate(elements[i], JSON.parse(toRotate), period);
}
}
// INJECT CSS
var css = document.createElement("style");
css.type = "text/css";
css.innerHTML = ".txt-rotate > .wrap { border-right: 0.08em solid #666 }";
document.body.appendChild(css);
};
</script>
<div id="pattern"></div>
<!--Pattern to add some touch -->
<div class="Header">
<img id="Noth1"src="img/header.png" width="495" height="76">
</div>
<div class="typethewriter">
<h3 style="font-family: Ubuntu;">
<span
class="txt-rotate"
data-period="2000"
data-rotate='[ "Hydrazine","One of the best Minecraft: Bedrock Edition utility mods.","Download now!", "RIP Von!" ]'></span>
</h3>
</div>
<div class="Menu">
<ul>
<li><i class="fa fa-fw fa-home"></i><a href="index.html">Home</a></li>
<li><i class="fa fa-fw fa-tags"></i><a href="Updates.html">Updates</a></li>
<li><i class="fa fa-fw fa-comments-o"></i><a href="faq.html">FAQ</a></li>
</ul>
</div>
<br>
</div>
<center>
<button Id="LinksToButton" onclick="window.location.href = 'https://github.com/HydrazineClient';">Github</button>
<button Id="LinksToButton" onclick="window.location.href = 'https://downloadlinkhere';">Download</button>
<button Id="LinksToButton" onclick="window.location.href = 'https://discord.gg/CdGGtCcXGB';">Discord</button>
<video Id="Noth" width="900" height="480" autoplay muted><source src="img/hack.mp4" type="video/mp4"></video>
<h6>Copyright © Hydrazine</h6>
</center>
</body>
</html>