ภาษาไทย
<!--要完成此效果把如下代码加入到<body>区域中--> <script> function syeClock() { if (!document.layers && !document.all) return; timePortion = อาร์เรย์ใหม่; maxLength = อาร์เรย์ใหม่; var runTime = วันที่ใหม่ (); timePortion[0] = runTime.getHours(); timePortion[1] = runTime.getMinutes(); timePortion[2] = runTime.getSeconds(); ความยาวสูงสุด[0] = 5; ความยาวสูงสุด[1] = 6; ความยาวสูงสุด[2] = 6; var decValue = 0; var decMod = 0; var temp = ""; var hourBackground = "#7B7BB5"; var minutesBackground = "#4D5487"; var วินาทีพื้นหลัง = "#424A63"; var colonBackground = "#000000"; var textColor = "#FFFFFF"; สำหรับ (var curPor = 0; curPor <= 2; curPor ++) { decValue = timePortion [curPor]; timePortion[curPor] = ""; ในขณะที่ (decValue != 0) { decMod = decValue % 2; decValue = Math.floor(ค่า decValue / 2); timePortion[curPor] = decMod + timePortion[curPor]; } if (timePortion[curPor].length < maxLength[curPor]) { สำหรับ (var i = 1; i <= maxLength[curPor] - timePortion[curPor].length; i++) { temp += "0"; } } timePortion[curPor] = temp + timePortion[curPor]; อุณหภูมิ = ""; } เวลาในการเคลื่อนที่ = '<table border="0" cellpadding="0" cellspacing="0"><tr><td bgcolor='+ hoursBackground +'><font color='+ textColor +'>' + timePortion[0 ] + '</font></td><td bgcolor='+ colonBackground +'>:</td><td bgcolor='+ minutesBackground +'><font color='+ textColor +'>' + timePortion[ 1] + '</font></td><td bgcolor='+ colonBackground +'>:</td><td bgcolor='+ minutesBackground +'><font color='+ textColor +'>' + timePortion [2] + '</td></tr></table>'; ถ้า (document.layers) { document.layers.clock.document.write (เวลาเคลื่อนที่); document.layers.clock.document.close(); } อื่นถ้า (document.all) { clock.innerHTML = เวลาในการเคลื่อนที่; } setTimeout("syeClock()", 1,000) } window.onload = syeClock; </script> <p align="center"> 二进制时钟<br> <span id="clock" style="position:relative;"></span> </p>