transition:transitionAttrs

Attribute Group Information

Attributes

QName Type Fixed Default Use Inheritable Annotation
direction restriction of string forward optional
dur string optional
endProgress restriction of decimal 1.0 optional
fadeColor string black optional
startProgress restriction of decimal 0.0 optional
subtype transition:subTypePrototype optional
type transition:typePrototype required

Used By

Source

<attributeGroup name="transitionAttrs">
  <attribute name="type" type="transition:typePrototype" use="required"/>
  <attribute name="subtype" type="transition:subTypePrototype" use="optional"/>
  <attribute name="fadeColor" type="string" use="optional" default="black"/>
  <attribute name="dur" type="string" use="optional"/>
  <attribute name="startProgress" use="optional" default="0.0">
    <simpleType>
      <restriction base="decimal">
        <minInclusive value="0.0"/>
        <maxInclusive value="1.0"/>
      </restriction>
    </simpleType>
  </attribute>
  <attribute name="endProgress" use="optional" default="1.0">
    <simpleType>
      <restriction base="decimal">
        <minInclusive value="0.0"/>
        <maxInclusive value="1.0"/>
      </restriction>
    </simpleType>
  </attribute>
  <attribute name="direction" use="optional" default="forward">
    <simpleType>
      <restriction base="string">
        <enumeration value="forward"/>
        <enumeration value="reverse"/>
      </restriction>
    </simpleType>
  </attribute>
</attributeGroup>