Português
<!--把下列代码加到<body>区域中--> <script language="JavaScript"> function makeArray(n){ this.length=n return this } function hexfromdec(num) { hex=new makeArray( 1); var hexstring=""; var shifthex=16; var temp1=num; for(x=1; x>=0; x--) { hex[x]=Math.round(temp1/shifthex - .5); hex[x-1]=temp1 - hex[x] * shifthex; temp1=hex[x-1]; shifthex /= 16; } for (x=1; x>=0; x--) { hexstring+=getletter(hex[x]); } retorno (hexstring); } function getletter(num) { if (num < 10) { return num; } else { if (num == 10) { retornar "A" } if (num == 11) { retornar "B" } if (num == 12) { retornar "C" } if (num == 13) { return "D" } if (num == 14) { return "E" } if (num == 15) { return "F" } } } function arco-íris(texto){ var color_d1; var allstring=""; for(i=0;i<text.length;i=i+2){ color_d1=255*Math.sin(i/(text.length/3)); color_h1=hexfromdec(color_d1); allstring+="<FONT COLOR="+color_h1+"ff"+color_h1+">"+text.substring(i,i+2)+"</FONT>"; } retornar todas as strings; } função sizefont(texto){ var color_d1; var allstring=""; var sinalizador=0; for(i=0,j=0;i<text.length;i=i+1){ if (flag==0) { j++; if (j>=7) { bandeira=1;}} if (bandeira==1) { j=j-1; if (j<=0) { bandeira=0; }} allstring+="<FONT SIZE="+ j + ">" + text.substring(i,i+1) + "</FONT>"; } retornar todas as strings; } document.write("<tamanho da fonte=5><CENTER>") document.write("<BR><BR>") document.write( sizefont("建站学院 专业网页教学站点")) document.write( "</CENTER></font>") </script>