19.5.1 anim
This element is a generic animation element that requires little or no semantic understanding of the attribute being animated. It can animate text within a shape or even the shape itself.
[Example: Consider trying to emphasize text within a shape by changing the size of its font by 150%. The
<p:anim to="1.5" calcmode="lin" valueType="num">
<p:cBhvr override="childStyle">
<p:cTn id="1" dur="2000" fill="hold"/>
<p:tgtEl>
<p:spTgt spid="1">
<p:txEl>
<p:charRg st="1" end="4"/>
</p:txEl>
</p:spTgt>
</p:tgtEl>
<p:attrNameLst>
<p:attrName>style.fontSize</p:attrName>
</p:attrNameLst>
</p:cBhvr>
</p:anim>
end example]
Attributes
to (To)
This attribute specifies the ending value for the animation as a percentage.
The possible values for this attribute are defined by the W3C XML Schema string datatype.
from (From)
This attribute specifies the starting value of the animation.
The possible values for this attribute are defined by the W3C XML Schema string datatype.
calcmode (Calculation Mode)
This attribute specifies the interpolation mode for the animation.
The possible values for this attribute are defined by the ST_TLAnimateBehaviorCalcMode simple type (19.7.20).
by (By)
This attribute specifies a relative offset value for the animation with respect to its position before the start of the animation.
The possible values for this attribute are defined by the W3C XML Schema string datatype.
valueType (Value Type)
This attribute specifies the type of property value.
The possible values for this attribute are defined by the ST_TLAnimateBehaviorValueType simple type (19.7.21).
[Note: The W3C XML Schema definition of this element’s content model (CT_TLAnimateBehavior) is located in A.3. end note]