SEQ Element | seq Behavior
Defines a new timeline container in an HTML document for sequentially timed elements.
Syntax
XML <t:SEQ ID="sID" STYLE="behavior:url(#default#time)" /> HTML N/A Scripting N/A
Possible Values
sID String that specifies a unique identifier for the object.
Members
Remarks
All timed HTML descendants of this XML element have sequential timing. These sequential elements are timed as though each one has the BEGINAFTER attribute set to the previous timed element. As with beginAfter timing, a duration value (dur property) must be specified or the next element in the sequence might never be displayed. Elements without timing attributes are ignored by the timing mechanism and are statically rendered. A timed element is an HTML element with an associated time behavior.
The prefix t is used to associate this element with an XML namespace. You must include the following line of code in the HEAD section of your HTML document when using this element.
<XML:NAMESPACE PREFIX="t"/>The SEQ element is available as of Microsoft® Internet Explorer 5, only in the Microsoft® Win32® platform.
Example
This example uses the SEQ element to display a sequence of text lines without specifying begin times for each timed element in the sequence.
Sample Code
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <XML:NAMESPACE PREFIX="t"/> <STYLE> .time { behavior: url(#default#time); } </STYLE> </HEAD> <BODY BGCOLOR="white"> <FONT FACE="Verdana" COLOR="Blue"> <t:SEQ ID="parent" CLASS="time" t:BEGIN="0" t:DUR="indefinite"> <DIV ID="div1" CLASS="time" t:DUR="2">First line of text.</DIV> <DIV ID="div1" CLASS="time" t:DUR="2">Second line of text.</DIV> <DIV ID="div1" CLASS="time" t:DUR="2">Third line of text.</DIV> <DIV ID="div1" CLASS="time" t:DUR="2">Fourth line of text.</DIV> <SPAN STYLE="color:black" ID="span1" CLASS="time" t:DUR="indefinite"><B>End of sequence.</B></SPAN> </t:SEQ> </FONT> </BODY> </HTML>
See Also
html+time, PAR, TIMELINE
Did you find this topic useful? Suggestions for other topics? write us!
© 1999 microsoft corporation. all rights reserved. terms of use.