• ベストアンサー

現在時間を表示できる無料素材はありますか?

HP作成初心者で日々、作成に精進しています(汗) タイトルの質問ですが、よろしければ教えてください。 よろしくお願いします。

質問者が選んだベストアンサー

  • ベストアンサー
  • megawind
  • ベストアンサー率39% (101/255)
回答No.2

お洒落な時計で時間を表示できるフリー素材です。 如何ですか?

参考URL:
http://www.clocklink.com/JP/home.htm
tricleore
質問者

お礼

回答ありがとうございました。 早速使わせていただきました。

その他の回答 (3)

  • t-san
  • ベストアンサー率36% (116/314)
回答No.4

テキスト表示でよければ。 <HEAD>~</HEAD>の間に下記を記述 <META http-equiv="Content-Script-Type" content="text/javascript"> <BODY>~</BODY>の間で時計を表示したい場所に下記を記述 <SCRIPT type="text/javascript"> <!-- function Watch() { now = new Date(); year = now.getYear(); month = now.getMonth()+1; day = now.getDate(); hour = now.getHours(); minute = now.getMinutes(); second = now.getSeconds(); if (year < 1000) { year += 1900 } if (hour < 10) { hour = '0' + hour } if (minute < 10) { minute = '0' + minute } if (second < 10) { second = '0' + second } document.form.watch.value = year+'年' + month + '月' + day + '日 ' + hour + ':' + minute + ':' + second; setTimeout("Watch()",1000); } document.write('<FORM name=form><INPUT name=watch size=27 " STYLE="color:green;border-top:0px;border-right:0px;border-left:0px;border-bottom:0px"></FORM>'); Watch(); //--> </SCRIPT>

tricleore
質問者

お礼

ありがとうございました!

  • Lunaria
  • ベストアンサー率69% (101/146)
回答No.3

No.1さんがご紹介のJavaScriptの他に、FLASHやJAVAアプレットによる時計素材がたくさんあります。 FLASHの例 http://www.butabon.com/index.html http://www.hikotora.com/ JAVAアプレットの例 http://www18.big.or.jp/~neon2/jv_tokei/jv_alclock.html どちらもデジタルもアナログ風もありますので、お好みのものを探してみてください。

tricleore
質問者

お礼

いろいろあるんですね!? 勉強になりました。 回答ありがとうございました。

回答No.1

趣旨に沿っているかわかりませんが、参考URLのようにJAVAスクリプトで時間を表示させるんではダメですか?

参考URL:
http://www.jasep.net/web/java/025.htm

関連するQ&A