0% found this document useful (0 votes)
31 views2 pages

Url

The document redirects users to a new URL after a few seconds. It displays a loading bar animation during the redirect and provides a link to manually go to the URL if redirection fails.

Uploaded by

Micaarcosguillen
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views2 pages

Url

The document redirects users to a new URL after a few seconds. It displays a loading bar animation during the redirect and provides a link to manually go to the URL if redirection fails.

Uploaded by

Micaarcosguillen
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<html>

<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-
scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="theme-color" content="#24cd77">
<title>Redirecting</title>
<meta name="robots" content="noindex">
<meta http-equiv="refresh" content="2;
url=https://apkpure.com/p/com.campmobile.snow">
<style>
body{background: #f2f5f9}
a{text-decoration: underline;color: #00A6ED}
.jump {text-align:center; width: 95%;max-width: 640px;margin:0 auto;z-
index:99999;font-
size:13px;height:160px;position:absolute;top:50%;left:0;right:0;margin-top:-80px}
.jump .logo-img {width:100%;margin:0 auto;margin-bottom:15px}
.jump .logo-img img {padding-bottom:15px}

.jump .text-wrap{margin: 0 auto;color: #8a8a8a}


.jump .text{word-wrap: break-word;margin-bottom: 15px}
.jump .text div{color: #636363;margin: 10px 0}

.loading-bar {width: 100%;z-index: 2000;height: 3px;position: relative}


.loading-bar-inner {height: 2px;transition: width .2s linear;width:
50%;background-color: #24cd77;}
.loading-bg {height: 2px;z-index: -1;position: absolute;top: 0;right:
0;bottom: 0;left:0;background-color: #e0e0e0;}
</style>
</head>
<body>

<div class="jump">
<div class="logo-img">
<a href="/" title="Go to Home"><img
src="https://static.apkpure.com/www/static/imgs/logo_new.png"/></a>
<div class="loading-bar">
<div class="loading-bar-inner" id="inner"></div>
<div class="loading-bg"></div>
</div>
</div>
<div class="text-wrap">
<div class="text">Redirecting you to
<div>https://apkpure.com/p/com.campmobile.snow</div></div>
<div>If you are not automatically redirected, <a
href="https://apkpure.com/p/com.campmobile.snow" rel="nofollow">Click
here</a>.</div>
</div>
</div>
</body>
<script>
var timer;
window.onload = function () {
setTimeout(function () {
finish();

location.replace('https://apkpure.com/p/com.campmobile.snow'+document.location.hash
);
},1000)
}
function clearTimer() {
if (timer) {
clearInterval(timer);
timer = null;
}
}
function start() {
if (timer) return;
var percent = 0;
update(percent);
timer = setInterval(() => {
percent += Math.floor(Math.random() * 3 + 5);
if (percent > 95) {
clearTimer();
}
update(percent);
}, 200);
}
function update(percent) {
document.getElementById('inner').style.width = percent + '%'
}
function finish(){
clearTimer();
update(100);
}
start();
</script>
</html>

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy