<transition> (Slide Transition for a Slide Layout)

This element specifies the type of slide transition that should be used to transition to the current slide from the previous slide. That is, the transition information is stored on the slide that will appear after the transition is complete.

Parent Elements

<sld>4.4.1.35); <sldLayout>4.4.1.36); <sldMaster>4.4.1.39)

Child Elements

Subclause

<blinds> (Blinds Slide Transition)

§4.6.18

<checker> (Checker Slide Transition)

§4.6.24

<circle> (Circle Slide Transition)

§4.6.26

<comb> (Comb Slide Transition)

§4.6.30

<cover> (Cover Slide Transition)

§4.6.32

<cut> (Cut Slide Transition)

§4.6.34

<diamond> (Diamond Slide Transition)

§4.6.35

<dissolve> (Dissolve Slide Transition)

§4.6.36

<extLst> (Extension List with Modification Flag)

§4.2.4

<fade> (Fade Slide Transition)

§4.6.41

<newsflash> (Newsflash Slide Transition)

§4.6.50

<plus> (Plus Slide Transition)

§4.6.54

<pull> (Pull Slide Transition)

§4.6.58

<push> (Push Slide Transition)

§4.6.59

<random> (Random Slide Transition)

§4.6.60

<randomBar> (Random Bar Slide Transition)

§4.6.61

<sndAc> (Sound Action)

§4.6.69

<split> (Split Slide Transition)

§4.6.71

<strips> (Strips Slide Transition)

§4.6.74

<wedge> (Wedge Slide Transition)

§4.6.94

<wheel> (Wheel Slide Transition)

§4.6.95

<wipe> (Wipe Slide Transition)

§4.6.96

<zoom> (Zoom Slide Transition)

§4.6.97

Attributes

Description

<advClick> (Advance on Click)

Specifies whether a mouse click will advance the slide or not. If this attribute is not specified then a value of true is assumed.

The possible values for this attribute are defined by the XML Schema boolean datatype.

<advTm> (Advance after time)

Specifies the time, in milliseconds, after which the transition should start. This setting may be used in conjunction with the <advClick> attribute. If this attribute is not specified then it is assumed that no auto-advance will occur.

The possible values for this attribute are defined by the XML Schema unsignedInt datatype.

<spd> (Transition Speed)

Specifies the transition speed that is to be used when transitioning from the current slide to the next.

The possible values for this attribute are defined by the ST_TransitionSpeed simple type (§4.8.58).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_SlideTransition">
	<sequence>
	<choice minOccurs="0" maxOccurs="1">
	<element name="blinds" type="CT_OrientationTransition"/>
	<element name="checker" type="CT_OrientationTransition"/>
	<element name="circle" type="CT_Empty"/>
	<element name="dissolve" type="CT_Empty"/>
	<element name="comb" type="CT_OrientationTransition"/>
	<element name="cover" type="CT_EightDirectionTransition"/>
	<element name="cut" type="CT_OptionalBlackTransition"/>
	<element name="diamond" type="CT_Empty"/>
	<element name="fade" type="CT_OptionalBlackTransition"/>
	<element name="newsflash" type="CT_Empty"/>
	<element name="plus" type="CT_Empty"/>
	<element name="pull" type="CT_EightDirectionTransition"/>
	<element name="push" type="CT_SideDirectionTransition"/>
	<element name="random" type="CT_Empty"/>
	<element name="randomBar" type="CT_OrientationTransition"/>
	<element name="split" type="CT_SplitTransition"/>
	<element name="strips" type="CT_CornerDirectionTransition"/>
	<element name="wedge" type="CT_Empty"/>
	<element name="wheel" type="CT_WheelTransition"/>
	<element name="wipe" type="CT_SideDirectionTransition"/>
	<element name="zoom" type="CT_InOutTransition"/>
	</choice>
	<element name="sndAc" minOccurs="0" maxOccurs="1" type="CT_TransitionSoundAction"/>
	<element name="extLst" type="CT_ExtensionListModify" minOccurs="0" maxOccurs="1"/>
	</sequence>
	<attribute name="spd" type="ST_TransitionSpeed" use="optional" default="fast"/>
	<attribute name="advClick" type="xsd:boolean" use="optional" default="true"/>
	<attribute name="advTm" type="xsd:unsignedInt" use="optional"/>
</complexType>