parentTimeEnd Property

Internet Development Index

Retrieves the current element's end time as an offset from the parent element's begin time.

Syntax

[ iTime = ] currTimeState.parentTimeEnd

Possible Values

iTimeInteger that receives the current element's end time, in seconds.

The property is read-only. The property has no default value.

Remarks

This property represents the sum of the parentTimeBegin and activeDur properties. For example, if an element has a begin time of four seconds, a duration (dur) of 10 seconds, and autoReverse set to true, the value of the parentTimeEnd property will be 24 seconds.

Example

This example uses the parentTimeEnd property to retrieve the current element's end time.

<HTML XMLNS:t="urn:schemas-microsoft-com:time">
<HEAD>
<TITLE>parentTimeEnd Property</TITLE>
<SCRIPT>
function getValue(){
parentBegin.innerText += div1.currTimeState.parentTimeEnd + ' second(s)';
}
</SCRIPT>
<STYLE>
.time { behavior: url(#default#time2) }
</STYLE>
<?IMPORT namespace="t" implementation="#default#time2">
</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=".01" repeatCount="indefinite" fill="hold"
onrepeat="innerText=parseInt(document.body.currTimeState.activeTime);">0</SPAN>
<BR>
<B>Time container timer:</B>
<SPAN id="Timer2" class="time" dur=".01" repeatCount="indefinite" fill="hold"
onrepeat="innerText=parseInt(t1.currTimeState.activeTime);">0</SPAN>
<BR><BR>
<t:excl ID="t1" repeatDur="indefinite" onbegin="getValue();">
<DIV ID="div1" CLASS="time" BEGIN="4" DUR="10" autoReverse="true"
style="position:relative;top:5px;left:0px;width:550px;height:100px;
background-color:yellow;text-align:center;font-size:large">
This div begins at 4 seconds and has a duration of 10 seconds.
Its autoReverse property is set to "true".
</DIV>
</t:excl>
<BR>
<B>parentTimeEnd</B><SPAN id="parentBegin"> - Element's end time as an offset from
parent element's begin time: </SPAN><BR>
</BODY>
</HTML>
This feature requires Microsoft?Internet Explorer 5.5 or later. Click the following icon to install the latest version. Then reload this page to view the sample.

Standards Information

This property is a Microsoft extension to Synchronized Multimedia Integration Language (SMIL) Non-Microsoft link.

Applies To

currTimeState

See Also

Introduction to HTML+TIME