Jump to content
Fórum Script Brasil
  • 0

ajuda com codigo contagem regressiva


alexandravnunes

Question

gente, sou novata aqui e simplesmente optei por entrar no fórum porque sempre faço download dos códigos mais hoje estou precisando de ajuda com um código esse abaixo, pois eu queria que na hora em que acabasse a contagem aparecesse uma imagem com promoção encerrada ou mensagem tanto faz, bjs a todos...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html;" /> 
<title>Contagem regressiva em Javascript | Blog do Garcia</title> 
<style type="text/css"> 
body{font-family:Verdana, Geneva, sans-serif; text-align:center}
 #contagemregressiva{margin:20px 0 0 20px;padding:20px;background:#ccc; width:90%}
 #contagemregressiva #elemento{padding:20px;background:#fff;width:95%;text-align:center;font:bold 20px Arial}
 p{margin:0}

</style> 
</head> 

<body>
<a/>
<center><a href="http://www.emailmeform.com/builder/form/0iGyFBSOtx58qn61Cr">
<img src="http://www.ofertaatual.com.br/imagens/logo.png"width="200" height="50" border="0"/></a><center></a>
</div>
<div id="contagemregressiva">
<h3>
<p>
<b>ATENÇÃO</b></p>
<h3>
<p>
enceramento da promoção: <strong>03/10/2011 &agrave;s 20:37 hs</strong></p>

<div id="elemento">
Carregando</div>
</div>



&lt;script type="text/javascript"> 
function atualizaContador(YY,MM,DD,HH,MI,saida) {
 var SS = 00;
 var hoje = new Date();
 var futuro = new Date(YY,MM-1,DD,HH,MI,SS);

 var ss = parseInt((futuro - hoje) / 1000);
 var mm = parseInt(ss / 60);
 var hh = parseInt(mm / 60);
 var dd = parseInt(hh / 24);

 ss = ss - (mm * 60);
 mm = mm - (hh * 60);
 hh = hh - (dd * 24);

 var faltam = '';
 faltam += (dd && dd > 1) ? dd+' dias, ' : (dd==1 ? '1 dia, ' : '');
 faltam += (toString(hh).length) ? hh+':' : '';
 faltam += (toString(mm).length) ? mm+':' : '';
 faltam += ss;

 if (dd+hh+mm+ss > 0) {
  document.getElementById(saida).innerHTML = faltam;
  setTimeout(function(){atualizaContador(YY,MM,DD,HH,MI,saida)},1000);
 } else {
  document.getElementById(saida).innerHTML = '';
  setTimeout(function(){atualizaContador(YY,MM,DD,HH,MI,saida)},1000);
 }
}
window.onload=function(){
 atualizaContador('2011','11','31','23','59','elemento');
}

</script>
<a href="http://www.emailmeform.com/builder/form/0iGyFBSOtx58qn61Cr">
<img border="0" src="http://cammercosul.com/img/icone_pergunta.png"width="200" height="50" align="center"><a/>

</body> 
</html>

Edited by fercosmig
add tags
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

Adicione isso abaixo do codigo....

if (dd+hh+mm+ss > 0) {

document.getElementById(saida).innerHTML = faltam;

setTimeout(function(){atualizaContador(YY,MM,DD,HH,MI,saida)},1000);

} else {

document.getElementById(saida).innerHTML = '';

setTimeout(function(){atualizaContador(YY,MM,DD,HH,MI,saida)},1000);

document.getElementById('elemento').innerHTML="<strong>Promoção Encerrada!</strong>";

}

Espero ter ajudado, se cuida =)

Edited by Victor Miranda
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...