<cond>
(Condition)
This element specifies conditions on time nodes in a timeline. It is used within a list of start condition or list of end condition elements.
[Example: For example, suppose we have a shape with a two second delay after the animation is started.
<p:cTn> <p:stCondLst> <p:cond delay="2000"/> </p:stCondLst> <p:childTnLst> <p:set>... <p:animEffect transition="in" filter="blinds(horizontal)"> <p:cBhvr> <p:cTn id="7" dur="1000"/> <p:tgtEl> <p:spTgt spid="4"/> </p:tgtEl> </p:cBhvr> </p:animEffect> </p:childTnLst> </p:cTn>
End Example]
Parent Elements |
---|
|
Child Elements |
Subclause |
---|---|
|
|
|
|
|
Attributes |
Description |
---|---|
|
This attribute describes the delay after an animation is triggered. The possible values for this attribute are defined by the ST_TLTime simple type (§4.8.42). |
|
This attribute describes the event that triggers an animation. The possible values for this attribute are defined by the ST_TLTriggerEvent simple type (§4.8.52). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_TLTimeCondition">
<choice minOccurs="0" maxOccurs="1">
<element name="tgtEl" type="CT_TLTimeTargetElement"/>
<element name="tn" type="CT_TLTriggerTimeNodeID"/>
<element name="rtn" type="CT_TLTriggerRuntimeNode"/>
</choice>
<attribute name="evt" use="optional" type="ST_TLTriggerEvent"/>
<attribute name="delay" type="ST_TLTime" use="optional"/>
</complexType>