26.08.2010, 10:07
Ich Suche nen Themen, wo ich Nr lockscreen clock und Lockscreen Date habe. Wo ich somit Farbe und so ändern kann
Mfg
Mfg
<html>
<head>
<meta http-equiv="Content-Language" content="fr">
<script language="JavaScript">
//
<!--masque le script pour les navigateurs qui ne supportent pas JavaScript
function afficheDate()// Notre fonction pour afficher la date et l'heure
{
date=new Date();
datejour=date.getDate();
heure=date.getHours();
minute=date.getMinutes();
seconde=date.getSeconds();
if (date.getDate()<10) datejour="0"+datejour;
if (heure<10) heure="0"+heure;
if (minute<10) minute="0"+minute;
if (seconde<10) seconde="0"+seconde;
document.getElementById("texteDate").innerHTML=""+heure+":"+minute+"";
setTimeout("afficheDate()", 1000);
}
// Fin du script -->
</script>
<title>Afficher l'heure</title>
</head>
<style>
body {background:url(LockBackground.png) no-repeat}
SPAN#texteDate
{
font-family: Trebuchet MS;
font-weight: bold;
text-align: center;
color: #C71585;
font-size: 50px;
}
</style>
<body onload="afficheDate();">
<!--DEBUT DATE-->
<table style="position: absolute; top: 10px; left: 0px; width: 320px; height: 461px;" cellspacing="0" cellpadding="0" align="center">
<tr align="center" valign="top" border="0" cellpadding="0">
<td height="10" valign="top">
<span id="texteDate"></span>
</td>
</tr>
</table>
<!--FIN DATE-->
</body>
</html>