-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (74 loc) · 3.3 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="Minecraft, resourcepacks24.de, Resourcepack">
<meta name="author" content="NeoCode">
<meta name="description" content="Fresh new look for Minecraft">
<!-- OG -->
<meta property="og:title" content="Smooth Texture Pack">
<meta property="og:description" content="Fresh new look for Minecraft">
<meta property="og:image" content="icon.png">
<meta property="og:url" content="https://xrealneon.github.io/STP/">
<!-- Twitter -->
<meta name="twitter:title" content="Smooth Texture Pack ">
<meta name="twitter:description" content="Fresh new look for Minecraft">
<meta name="twitter:image" content=" icon.png">
<meta name="twitter:card" content="summary_large_image">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="icon.png" type="image/png">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/lity/2.3.1/lity.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/lity/2.3.1/lity.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css">
<link rel="stylesheet" href="style.css">
<title>Smooth Texture Pack</title>
</head>
<body oncontextmenu="return false;">
<video autoplay muted loop id="bgVideo">
<source src="background.mp4" type="video/mp4">
</video>
<div id="wrapper">
<div id="wrapper-h">
<div id="content">
<div id="card">
<h1>Smooth Texture Pack</h1>
<p>Fresh new look for Minecraft</p>
<a id="buttondl" href="https://resourcepacks24.de/download/956341" target="_blank">Download <i
class="fas fa-download"></i></a>
<a id="buttondli" href="SmoothTP Installer.jar" target="_blank">Download Installer <i
class="fas fa-cloud-download-alt"></i></a>
<a id="buttonyt" href="https://www.youtube.com/watch?v=Q6nausaVYZ8" data-lity>Watch
Trailer <i class="fab fa-youtube"></i></a>
<p id="copy">©NeoCode</p>
</div>
</div>
</div>
</div>
<div id="loading">
<div class="lds-ring">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</body>
<script>
document.getElementById("copy").innerHTML = "© " + new Date().getFullYear() + " NeoCode";
$(document).on('lity:open', function (event, instance) {
document.getElementById("bgVideo").pause();
});
$(document).on('lity:close', function (event, instance) {
document.getElementById("bgVideo").play();
});
window.addEventListener("load", function () {
document.getElementById("loading").style.opacity = 0;
setTimeout(function () {
document.getElementById("loading").style.display = "none";
}, 1000);
});
</script>
</html>