Created
July 4, 2017 08:01
-
-
Save anonymous/12e6634cfc1b80eae04bc505fe94e51e to your computer and use it in GitHub Desktop.
LLmJqM
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="bir"> | |
| </div> | |
| <div id="iki"> | |
| </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 timer(){ | |
| document.getElementById("iki").innerHTML="Selector yakalama çalışıyor"; | |
| document.getElementById("bir").innerHTML="De ye ulaşım sağlanıyor."; | |
| var dt=new Date(); | |
| document.getElementById("bir").innerHTML=dt.getHours()+" : "+dt.getMinutes()+ | |
| ": "+dt.getSeconds(); | |
| setTimeout(timer,500); | |
| } | |
| //new Date().getTime() | |
| setTimeout(timer(),1000); | |
| for(let i=14;i<144;i++){ | |
| setTimeout(timer,500); | |
| if(i==140){ | |
| console.log("12"); | |
| } | |
| } | |
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
| #bir { | |
| float:center; | |
| font-size:20px; | |
| margin:2px; | |
| border-style:solid; | |
| border-width:2px; | |
| width:90px; | |
| background-color:rgb(156,107,94); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment