Increased video quality, fixed backgrounds, segregated styles
This commit is contained in:
parent
aa6fa84d2d
commit
3cf0d5f5b3
Binary file not shown.
After Width: | Height: | Size: 51 KiB |
Binary file not shown.
After Width: | Height: | Size: 48 KiB |
Binary file not shown.
After Width: | Height: | Size: 27 KiB |
|
@ -28,10 +28,12 @@
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div>
|
<div class="content">
|
||||||
<video class="fullscreen" id="player" disablePictureInPicture>
|
<video class="fullscreen" id="player" disablePictureInPicture>
|
||||||
<source src="/media/download.mp4" type="video/mp4">
|
<source src="/media/download.mp4" type="video/mp4">
|
||||||
</video>
|
</video>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<script src="/scripts/index.js" type="application/javascript"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Binary file not shown.
|
@ -19,29 +19,19 @@
|
||||||
<meta property="og:image:height" content="256">
|
<meta property="og:image:height" content="256">
|
||||||
<meta property="og:image:alt" content="NoEscape">
|
<meta property="og:image:alt" content="NoEscape">
|
||||||
|
|
||||||
<title>NoEscape.exe Source Code / Free & Fast Downloads / fast-dl.cc</title>
|
<title>NoEscape.exe Source Code :: FAST-DL.CC</title>
|
||||||
|
|
||||||
<style>
|
<link rel="shortcut icon" type="image/png" href="/images/noescape.png" />
|
||||||
body {
|
<link rel="icon" type="image/png" href="/images/noescape.png" />
|
||||||
background-image: url("/images/background.png");
|
|
||||||
}
|
|
||||||
|
|
||||||
.center {
|
<link rel="stylesheet" href="/styles/noescape.css" type="text/css" />
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.link {
|
|
||||||
font-size: 20px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="center">
|
<div class="content">
|
||||||
<h1>Fast & Free Downloads</h1>
|
<h1 class="header no-margin text-center"><span class="rainbow">FAST-DL.CC</span> :: Fast & Free Downloads</h1>
|
||||||
|
|
||||||
|
<h2 class="no-margin">NoEscape.exe :: LATEST RELEASE :: UPD 2023-09</h2>
|
||||||
<p>
|
<p>
|
||||||
NoEscape is a trojan creepypasta made by Enderman in 2020.
|
NoEscape is a trojan creepypasta made by Enderman in 2020.
|
||||||
Many people would love to download its source code, but unfortunately it's closed-source...<br />
|
Many people would love to download its source code, but unfortunately it's closed-source...<br />
|
||||||
|
@ -49,10 +39,12 @@
|
||||||
Download <strong>NOESCAPE</strong> free source code RIGHT NOW (click the link below)
|
Download <strong>NOESCAPE</strong> free source code RIGHT NOW (click the link below)
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<a class="link" href="code.zip" download>DOWNLOAD NOW</a>
|
<div>
|
||||||
|
<a class="link" href="src.zip" download>DOWNLOAD NOW</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
<h2>Video tutorial (how to download):</h2>
|
<h2>Video tutorial (how to download):</h2>
|
||||||
<video controls disablePictureInPicture>
|
<video controls disablePictureInPicture width="629" height="276">
|
||||||
<source src="/media/how-to-download.mp4" type="video/mp4">
|
<source src="/media/how-to-download.mp4" type="video/mp4">
|
||||||
</video>
|
</video>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -5,7 +5,7 @@ async function sleep(ms) {
|
||||||
await new Promise(resolve => setTimeout(resolve, ms));
|
await new Promise(resolve => setTimeout(resolve, ms));
|
||||||
}
|
}
|
||||||
|
|
||||||
document.querySelector('.fullscreen').onclick = () => {
|
document.querySelector('.content').onclick = () => {
|
||||||
document.title = 'Downloading...';
|
document.title = 'Downloading...';
|
||||||
|
|
||||||
video.style.cursor = 'default';
|
video.style.cursor = 'default';
|
||||||
|
@ -15,6 +15,6 @@ document.querySelector('.fullscreen').onclick = () => {
|
||||||
video.addEventListener('ended', async () => {
|
video.addEventListener('ended', async () => {
|
||||||
document.title = 'Download complete!';
|
document.title = 'Download complete!';
|
||||||
|
|
||||||
await sleep(3000);
|
await sleep(1500);
|
||||||
window.location.replace(redirect);
|
window.location.replace(redirect);
|
||||||
});
|
});
|
|
@ -0,0 +1,89 @@
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
background-image: url("/images/bg-light.jpg");
|
||||||
|
|
||||||
|
background-size: cover;
|
||||||
|
background-position: center;
|
||||||
|
background-attachment: fixed;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body {
|
||||||
|
background-color: black;
|
||||||
|
background-image: url("/images/bg-dark.jpg")
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.link {
|
||||||
|
color: cornflowerblue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
padding: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
/* text-decoration: underline; */
|
||||||
|
}
|
||||||
|
|
||||||
|
.link {
|
||||||
|
font-size: 24px;
|
||||||
|
transition: 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.link:hover {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.no-margin {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes anim-rainbow {
|
||||||
|
0% {
|
||||||
|
color: hsla(0deg 100% 50%);
|
||||||
|
filter: drop-shadow(0 0 5px hsla(0deg 100% 50%));
|
||||||
|
}
|
||||||
|
16.67% {
|
||||||
|
color: hsla(60deg 100% 50%);
|
||||||
|
filter: drop-shadow(0 0 5px hsla(60deg 100% 50%));
|
||||||
|
}
|
||||||
|
33.33% {
|
||||||
|
color: hsla(120deg 100% 50%);
|
||||||
|
filter: drop-shadow(0 0 5px hsla(120deg 100% 50%));
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
color: hsla(180deg 100% 50%);
|
||||||
|
filter: drop-shadow(0 0 5px hsla(180deg 100% 50%));
|
||||||
|
}
|
||||||
|
66.67% {
|
||||||
|
color: hsla(240deg 100% 50%);
|
||||||
|
filter: drop-shadow(0 0 5px hsla(240deg 100% 50%));
|
||||||
|
}
|
||||||
|
83.33% {
|
||||||
|
color: hsla(300deg 100% 50%);
|
||||||
|
filter: drop-shadow(0 0 5px hsla(300deg 100% 50%));
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
color: hsla(360deg 100% 50%);
|
||||||
|
filter: drop-shadow(0 0 5px hsla(360deg 100% 50%));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.rainbow {
|
||||||
|
animation: 2s anim-rainbow infinite;
|
||||||
|
}
|
|
@ -3,16 +3,39 @@ body {
|
||||||
background-color: white;
|
background-color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
position: absolute;
|
||||||
|
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
z-index: -69;
|
||||||
|
}
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
|
||||||
background-color: black;
|
background-color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.fullscreen {
|
.fullscreen {
|
||||||
|
position: fixed;
|
||||||
|
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
||||||
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
|
||||||
|
-webkit-transform: translate(-50%, -50%);
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
Loading…
Reference in New Issue