documentTimeToParentTime Method | DHTML中文手册 |
Converts a value in the document timeline to the corresponding point in the element's parent timeline.
dhtml语法
parentTime = object.documentTimeToParentTime(documentTime)
Parameters
documentTime Required. Integer that specifies a point on the document's timeline.
Return Value
Integer that specifies the point in the element's parent timeline that corresponds to documentTime.
DHTML代码范例
This example uses the documentTimeToParentTime method to retrieve the point in the element's parent timeline corresponding to documentTime. To see the element's point in the parent timeline, click the documentTimeToParentTime button.
<HTML XMLNS:t ="urn:schemas-microsoft-com:time"> <HEAD> <TITLE>documentTimeToParentTime Method</TITLE> <?IMPORT namespace="t" implementation="#default#time2"> <STYLE> .time{ behavior: url(#default#time2);} </STYLE> </HEAD> <BODY TOPMARGIN=0 LEFTMARGIN=0 BGPROPERTIES="FIXED" BGCOLOR="#FFFFFF" LINK="#000000" VLINK="#808080" ALINK="#000000"> <B>Document timer:</B> <SPAN id="Timer1" class="time" dur="1" repeatCount="indefinite" onrepeat="innerText=parseInt(t1.currTimeState.activeTime);">0</SPAN> <BR> <B>Time container timer:</B> <SPAN id="Timer2" class="time" dur="1" repeatCount="indefinite" onrepeat="innerText=parseInt(t1.currTimeState.activeTime);">0</SPAN> <BR> <t:excl id="t1" class="time" repeatCount="3"> <DIV id="div1" style="color:blue;font-size:0.5in" class="time" begin="2s" dur="5s">HELLO WORLD!</DIV> </t:excl> <BR> <SPAN id="s1">Point in parent timeline:</span> <BR><BR> <BUTTON id="b1" class="time" dur="1" repeatCount="indefinite" onclick="s1.innerText='Point in parent timeline: ' + div1.documentTimeToParentTime(t1.currTimeState.activeTime);" onrepeat="innerText='Get documentTimeToParentTime'"> Get documentTimeToParentTime </BUTTON> </BODY> </HTML>
是否符合公共标准
This method is a Microsoft extension to Synchronized Multimedia Integration Language (SMIL) .
Applies To
t:TRANSITIONFILTER, t:ANIMATE, t:ANIMATECOLOR, t:ANIMATEMOTION, t:ANIMATION, t:AUDIO, t:EXCL, t:IMG, t:MEDIA, t:PAR, t:REF, t:SEQ, t:SET, time2, t:VIDEO
更多语法参考
introduction to html+time, parenttimebegin, parentTimeEnd