Español
<!-- http://www.downcodes.com/js --> <!--完整的HTML文件如下--> <HTML> <TITLE>建站学院特效代码->>语言时钟</TITLE> < HEAD> <SCRIPT LANGUAGE="JavaScript"> <!-- Comienza la función número(x) { if (x==1) return "one"; si (x==2) devuelve "dos"; si (x==3) devuelve "tres"; si (x==4) devuelve "cuatro"; si (x==5) devuelve "cinco"; si (x==6) devuelve "seis"; si (x==7) devuelve "siete"; si (x==8) devuelve "ocho"; si (x==9) devuelve "nueve"; si (x==10) devuelve "diez"; si (x==11) devuelve "once"; si (x==12) devuelve "doce"; devolver x; //predeterminado } función ishtime(h,m) { h = número(h) if (m<=3 || m>57) return h+" en punto"; si (m<=7) devuelve "cinco y cinco"+h; if (m<=12) devuelve "diez y diez"+h; si (m<=17) devuelve "y cuarto"+h; si (m<=23) devuelve "y veinte"+h; if (m<=28) devuelve "veinticinco y cinco"+h; si (m<=33) devuelve "y media "+h; si (m<=38) devuelve "veinticinco a "+h; si (m<=43) devuelve "veinte a "+h; si (m<=48) devuelve "cuarto a "+h; si (m<=53) devuelve "diez a "+h; si (m<=58) devuelve "cinco a "+h; devolver "h:m"; // ¿nunca lo alcanzaste? } función diurna(h) { if (!h || h>21) return " por la noche" if (h<12) return " por la mañana"; if (h<=17) regresa "por la tarde"; volver "por la tarde"; // predeterminado } function ish(h,m) { if (!h && !m) { // si no se proporciona hora, use la hora del sistema time = new Date() h = time.getHours() m = time.getMinutes () } z = día(h); h = h % 12 // fijar el reloj de 12 horas if (m>57 && time.getSeconds()>30) m++; // redondear segundos si (m>60) m=0 // redondear minutos si (m>33) h++ // redondear horas si (h>12) h = 1 // el reloj gira.. if (h ==0) h = 12 return "Ahora se trata de "+ishtime(h,m)+z+"." } // Fin --> </script> <!-- PASO DOS: Copie este código en el CUERPO de su documento HTML --> <BODY> <centro> <script language="JavaScript"> <!--HIDE DE NAVEGADORES ANTIGUOS-- document.writeln(ish().fontcolor("black"),"<P>") <!--DONE--> </script> </center>