ciao a tutti, è da tanto che vi leggo anche se è da poco che ho deciso di mettere in pratica quello che sto imparando dal vostro sito....vorrei chiedervi un piccolo aiutino semplice semplice ....per voi: ho realizzato questo piccolo orologio con datario ( i tulipani). Finchp lo pubblico su splinder è tutto ok, ma quando lo carico sul mio spazio web, per creare l'iframe affinchè i visitatori del blog possano prelevarlo, non riesco a togliere lo sfondo bianco, vedi qui : come posso fare?
Lo script usato è questo:
<head>
<SCRIPT language=JavaScript>
navvers = navigator.appVersion.substring(0,1);
if (navvers > 3)
navok = true;
else
navok = false;
today = new Date;
numero = today.getDate();
if (numero<10)
numero = "0"+numero;
mois = today.getMonth();
if (navok)
annee = today.getFullYear();
else
annee = today.getYear();
mois++;
if (mois < 10)
mois = "0" + mois;
messageDate = numero + "/" + mois + "/" + annee;
function HeureCheck()
{
krucial = new Date;
heure = krucial.getHours();
min = krucial.getMinutes();
sec = krucial.getSeconds();
jour = krucial.getDate();
mois = krucial.getMonth()+1;
annee = krucial.getFullYear();
if (sec < 10)
sec0 = "0";
else
sec0 = "";
if (min < 10)
min0 = "0";
else
min0 = "";
if (heure < 10)
heure0 = "0";
else
heure0 = "";
DinaHeure = heure0 + heure + ":" + min0 + min + ":" + sec0 + sec;
which = DinaHeure
if (document.all){
dynamic3.innerHTML='<center>00:00:00</center>'
dynamic3.innerHTML='<FONT SIZE=4 FACE=arial>'+which+'</FONT>';
}
else if (document.layers){
document.dynamic1.document.dynamic2.document.write (''+which+'')
document.dynamic1.document.dynamic2.document.close ()
}
tempo = setTimeout("HeureCheck()", 1000)
}
</SCRIPT>
</head>
<body
onload=HeureCheck() onunload=clearTimeout(tempo)
bgcolor="transparent">
</body>
<TABLE height=153 cellSpacing=0 cellPadding=0 width=50 border=0>
<TBODY>
<TR>
<TD>
<TABLE borderColor= "transparent" height=153px cellSpacing=0 width=50px bgColor=#FFFF66 border=0>
<TBODY>
<TR>
<TD>
<CENTER><FONT color=#003399><FONT face=arial size=4>
<SCRIPT language=JavaScript>
document.write(messageDate);
</SCRIPT>
</FONT>
<ILAYER id=dynamic1 height=10 width=10%><LAYER id=dynamic2 height=15 width=10%><DIV id=dynamic3></DIV></LAYER> </ILAYER></FONT></CENTER></TD></TR></TBODY> </TABLE></TD></TR></TBODY></TABLE>