在自己的網站上放置免費、可隨心所欲調整樣式的時間小工具
想要在自己網站上顯示一個精確的時間?還是今天的日期、日出日落時間或晝長?只要從下列選項選擇並複製語法你就可以做到!完全免費!
選擇
使用條款
- 連回 Time.is 的連結在使用的網站必須清晰可見,你可以調整或翻譯連結文字,但必須包含 Time.is, time, 或地點的名字 (India Standard Time) 或時區 (IST).
- 使用的網頁不可以自動更新
- 從App內使用是不被允許的
- 小工具不提供任何保證
- 小工具不收取任何費用
進階使用
There are two widget scripts: A simplified version,, which displays only time, and the main widget script,, which can display time, date, sunrise time, sunset time and day length. The main widget script is available in several languages. For other languages, replace zh_tw in the script name with the code for the desired language. 有兩個小工具語法:簡單版 t.js ,僅顯示時間。完整版 zh_tw.js ,可顯示時間/日期/日出日落/晝長。完整版小工具提供數種語言版本,用語言代碼替換原始碼檔名中的 zh_tw 即可。(例如波蘭文版是pl.js,土耳其文版是tr.js)
init function接受的參數:
參數 | 可用關鍵字 | 預設值 |
template | TIME, DATE, SUN | TIME |
time_format | hours, minutes, seconds, 12hours, AMPM | hours:minutes:seconds |
date_format | dayname, dname, daynum, dnum, day_in_y, week, monthname, monthnum, mnum, yy, year | year-monthnum-daynum |
sun_format | srhour, srminute, sr12hour, srAMPM, sshour, ssminute, ss12hour, ssAMPM, dlhours, dlminutes | srhour:srminute-sshour:ssminute |
coords | 地點的經緯度,顯示日升日落資訊必須提供。 | |
id | 為了讓伺服器識別地點和時區,若地點名稱包含非ASCII字元或您更改了HTML元素的ID,請提供。 | |
callback | 每秒都會被呼叫的function名稱,會將準備好輸出的template作為參數(選擇性) |
參數名稱和關鍵字大小有別。您可以增加HTML和其他內容到 template, time_format, date_format 和 sun_format 參數
可以這樣建立數個時鐘:
UTC time: <span id="UTC_za00"></span><br/> New York sunrise time: <span id="New_York_z161"></span><br/> Tokyo sunrise time: <span id="Tokyo_z444"></span><br/> Find the <a href="https://time.is/" id="time_is_link" rel="nofollow">current time for any location or time zone on Time.is!</a> <script src="//widget.time.is/zh_tw.js"></script> <script> time_is_widget.init({ UTC_za00 : {}, New_York_z161 : { template: "SUN", sun_format: "srhour:srminute", coords: "40.71427,-74.00597" }, Tokyo_z444 : { coords: "59.33258,18.06490" } }); </script>
結果:
time_format, date_format, sun_format and template 等參數的值會被繼承,所以若已經在前面的小工具中指定了需要的參數,不需要重複指定。