Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //console.log('Mensagem1');
- /*window.setTimeout(function(){
- console.log('Mensagem 2');
- },3000);*/
- /* Obtendo os id's para adicionar os códigos JS */
- /*document.getElementById('mostrar-loader').onclick = function(){
- document.getElementById('spinner-loader').style.display = "initial";
- window.setTimeout(function(){
- document.getElementById('spinner-loader').style.display = "nome";
- },5000);
- };*/
- /*var count = 0;
- var inter = window.setInterval(function(){
- console.log(count);
- count++;
- if(count >=10){
- window.clearInterval(inter);
- }
- },1000);*/
- //Desafio do relogio
- window.setInterval(function(){
- var hora_atual = new Date();
- var hora = hora_atual.getHours();
- var minutos = hora_atual.getMinutes();
- var segundos = hora_atual.getSeconds();
- function format_time(time){
- if(time>=0 && time <= 9){
- var formatted_time = time.toString();
- formatted_time = "0" + formatted_time;
- }else{
- var formatted_time = time.toString();
- }
- return formatted_time;
- }
- document.getElementById('relogio').innerHTML = format_time(hora) + ":" + format_time(minutos) +":"+ format_time(segundos);
- },1000);
Advertisement
Add Comment
Please, Sign In to add comment