Jump to content

Timer


dontpanic

Recommended Posts

posto che non avrei idea di come fare, ma esiste un modulo che indica una specie di conto alla rovescia? cioè, mi spiego meglio, sarebbe carino avere un blocco che indichi un conto alla rovescia, che si potrebbe utilizzare in mille modi. a me per esempio piacerebbe che indicasse la scadenza dell ore 17, ora entro la quel la spedizione parte per consegna il giorno dopo. ma si potrebbe usare anche per offerte o quello che viene in mente. non so, disarci o vino al vino o compagnia bella :) avete qualche idea?

tenchiu.

luca

edit: ok, ho appena visto il modulo super offerta....

Link to comment
Share on other sites

Allora:
un bell'orologio in flash e' questo a te poi se sai scompattare il flash ... etc

http://www.prestashop.com/forums/viewthread/12807


se vuoi invece inserire una funzione di countdown:

presa da non mi ricordo piu' quale sito:

[removed]
//<![CDATA[
function countdown(i)
{
//aggiunto per giorno
oggi = new Date();
BigDay = new Date("january 26, 2009")
msPerDay = 24 * 60 * 60 * 1000 ;
timeLeft = (BigDay.getTime() - oggi.getTime());
timeLeft = Math.floor(timeLeft / 1000);

  Tempo_Mancante = timeLeft ;

  if(Tempo_Mancante < 0)
  Tempo_Mancante = 0;

day = Math.floor(Tempo_Mancante / (60 * 60 * 24));
Tempo_Mancante %= (60 * 60 * 24);



  ore = Math.floor(Tempo_Mancante / (60 * 60));

  Tempo_Mancante %= (60 * 60);
  minuti = Math.floor(Tempo_Mancante / 60);

  Tempo_Mancante %= 60;
  secondi = Tempo_Mancante;

    cDay  = document.getElementById("counter_day");

  cOre  = document.getElementById("counter_ore");
  cMin  = document.getElementById("counter_min");
  cSec  = document.getElementById("counter_sec");


cDay[removed]    = GetFormated(day);   
  cOre[removed]    = GetFormated(ore);
  cMin[removed]    = GetFormated(minuti);
  cSec[removed]    = GetFormated(secondi);

  //Ricorsione
   b = i + 1;
   setTimeout('countdown(;', 1000);
}

function GetFormated(i)
{
  if(i<10) { return "0"+i; }
  return i;
}
//]]>
[removed]



e inserire in body:


 10
 10
 00
00
<!-- inserito per far partire conto alla rovescia -->
[removed]
//<![CDATA[
countdown(0);
//]]>
[removed]


 DAYS    HOURS  MINUTES SECONDS 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...