parentTimeBegin parentTimeEnd ¼Ó¼º ¿¹Á¦

¹®¼­ÀÇ ½Ã°£(parseInt(document.body.currTimeState.activeTime)): 0
¿ë±âÀÇ ½Ã°£(parseInt(tExcl.currTimeState.activeTime)): 0
2ÃÊ ÈÄ ½ÃÀÛÇÏ¿© 5ÃÊ°£ Áö¼ÓµÈ´Ù. ¸ðüÀÇ repeatDur ¼Ó¼ºÀº "indefinite"·Î ¼³Á¤µÇ¾ú´Ù.

parentTimeBegin= (¸ðü ½ÃÀ۽𣿡 »ó´ëÀû(offset)ÀÎ °³Ã¼ÀÇ ½ÃÀ۽ð£)
parentTimeEnd= (¸ðü ½ÃÀ۽𣿡 »ó´ëÀû(offset)ÀÎ °³Ã¼ÀÇ Á¾·á½Ã°£)
<HTML xmlns:t="urn:schemas-microsoft-com:time">
<HEAD>
<SCRIPT>
function showTime(){
  parentBegin.innerText=divObj.currTimeState.parentTimeBegin+' ÃÊ ';
  parentEnd.innerText=divObj.currTimeState.parentTimeEnd+' ÃÊ ';
}
</SCRIPT>
<STYLE>.time { behavior:url(#default#time2) }</STYLE>
<IMPORT namespace="t" implementation="#default#time2">
</HEAD>

<BODY>
¹®¼­ÀÇ ½Ã°£(parseInt(document.body.currTimeState.activeTime)):
  <SPAN id="Timer1" class="time" dur=".01" repeatCount="indefinite" fill="hold"
    onrepeat="innerText=parseInt(document.body.currTimeState.activeTime);">0</SPAN><BR>
¿ë±âÀÇ ½Ã°£(parseInt(tExcl.currTimeState.activeTime)):
  <SPAN id="Timer2" class="time" dur=".01" repeatCount="indefinite" fill="hold"
    onrepeat="innerText=parseInt(tExcl.currTimeState.activeTime);">0</SPAN><BR>

<t:EXCL id="tExcl" repeatDur="indefinite" onbegin="showTime();">
  <DIV id="divObj" class="time" BEGIN="2" DUR="5" style="position:relative;top:5;left:0;
    background-color:yellow;font-size:14;border:solid 1 blue">2ÃÊ ÈÄ ½ÃÀÛÇÏ¿© 5ÃÊ°£ Áö¼ÓµÈ´Ù.
  ¸ðüÀÇ repeatDur ¼Ó¼ºÀº "indefinite"·Î ¼³Á¤µÇ¾ú´Ù.</DIV>
</T:excl><BR>

<SPAN class=property>parentTimeBegin</SPAN>=<SPAN id="parentBegin"></SPAN>
(¸ðü ½ÃÀ۽𣿡 »ó´ëÀû(offset)ÀÎ °³Ã¼ÀÇ ½ÃÀ۽ð£)<BR>
<SPAN class=property>parentTimeEnd</SPAN>=<SPAN id="parentEnd"></SPAN>
(¸ðü ½ÃÀ۽𣿡 »ó´ëÀû(offset)ÀÎ °³Ã¼ÀÇ Á¾·á½Ã°£)<BR>
</BODY>
</HTML>