Created
April 5, 2022 18:48
-
-
Save HeNy007/0e2a16ddcaee4fe8f5b051ee1c7fc915 to your computer and use it in GitHub Desktop.
countdown redirect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="iwebcenter"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="https://code.jquery.com/jquery-1.12.3.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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