現在時刻をリアルタイムに表示する
■
動作ブラウザ 【 IE:
4.0
NN:
3.0
】
Internet Explorer
Netscape Navigator
DreamPassport
iCab
3.0x
4.0x
4.5
5.0x
5.5
2.0x
3.0x
4.0x
4.x
6.0
2
3
2.x
Windows
×
○
-
○
○
×
○
○
○
×
-
×
-
Macintosh
×
×
×
×
-
×
○
○
○
×
-
-
×
UNIX
-
-
-
-
-
×
×
×
×
×
-
-
-
Dreamcast
-
-
-
-
-
-
-
-
-
-
×
×
-
ポイント
svgObj = document.theSVG.getSVGDocument().getElementById("myText").getFirstChild(); dt = new Date(); h = dt.getHours(); m = dt.getMinutes(); s = dt.getSeconds(); txt = h+":"+m+":"+s; svgObj.setData(txt);
説 明
SVG内で内容を変更する文字のエレメントにidで名前を付けます。付けた名前はgetElementById("名前")で指定します。このエレメント内のノードのデータをsetDataで書き換えます。new Date()でオブジェクトを作成しgetHours()、getMinutes()、getSeconds()で取得しsetData()を使ってSVG内のエレメント内テキストを書き換えます。リアルタイムに表示するにはsetTimeout()を使って定期的(1秒)に出力を行います。
サンプル
現在時刻をリアルタイムに表示する
補足説明
ここで使用したSVGは以下の通りです。
Now Loading...
■サンプルスクリプトを実行する
>>実行
■各ブラウザでの動作結果を見る
>>View!