Barra de Progresso
About this app
Uma barra de progresso que redireciona para plimplim.tv quando atingir 100%
Barra de Progresso
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Barra de Progresso</title>
<meta name="description" content="Uma barra de progresso que redireciona para plimplim.tv quando atingir 100%">
<meta name="keywords" content="barra de progresso, redirecionamento, plimplim.tv">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/5.0.2/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
var progressBar = document.getElementById("progress-bar");
var width = 0;
var intervalId = setInterval(frame, 10);
function frame() {
if (width >= 100) {
clearInterval(intervalId);
window.location.href = "https://plimplim.tv";
} else {
width++;
progressBar.style.width = width + "%";
}
}
});
} catch (error) {
throw error;
}
</script>
<style>
#progress-bar {
height: 30px;
background-color: #f00;
position: relative;
margin-bottom: 20px;
overflow: hidden;
}
#progress-bar:after {
content: "";
display: block;
height: 100%;
width: 100%;
background-color: #ff0;
position: absolute;
left: -100%;
animation: progress 5s infinite;
}
@keyframes progress {
0% { left: -100%; }
100% { left: 100%; }
}
#progress-bar:before {
content: "";
display: block;
height: 100%;
width: 100%;
background-color: #00f;
position: absolute;
left: -200%;
animation: progress 10s infinite;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<div id="progress-bar"></div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!