Skip to content

Instantly share code, notes, and snippets.

@HeNy007
Created April 5, 2022 18:48
Show Gist options
  • Select an option

  • Save HeNy007/0e2a16ddcaee4fe8f5b051ee1c7fc915 to your computer and use it in GitHub Desktop.

Select an option

Save HeNy007/0e2a16ddcaee4fe8f5b051ee1c7fc915 to your computer and use it in GitHub Desktop.
countdown redirect
<div id="iwebcenter"></div>
function counter($el, n) {
(function loop() {
$el.html(n);
if (n == 0){
//window.location.href = 'http://iwebcenter.net';
}
if (n--) {
setTimeout(loop, 1000);
}
})();
}
counter($('#iwebcenter'), 10);
<script src="https://code.jquery.com/jquery-1.12.3.js"></script>
#iwebcenter{
background: orange;
width: 100px;
height: 100px;
text-align: center;
line-height: 100px;
font-size: 50px;
color: #fff;
font-weight: bold;
transform: translate(-50%,-50%);
position: absolute;
top: 50%;
left: 50%;
border-radius: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment