SEQ Element | seq Behavior

MS Office DHTML, HTML & CSS

SEQ Element | seq Behavior


This document describes technologies available as an experimental implementation of HTML+TIME within Internet Explorer 5. While we encourage you to evaluate these features and to send us your feedbackInternet Link, please note that these features are subject to change.

Defines a new timeline container in an HTML document for sequentially timed elements.

Syntax

XML<t:SEQ ID="sID" STYLE="behavior:url(#default#time)" />
HTMLN/A
ScriptingN/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>
This feature requires Internet Explorer 5 or later. Click the icon below to install the latest version. Then reload this page to view the sample.
Microsoft Internet Explorer

See Also

html+timeInternet Link, PAR, TIMELINE

Back to topBack to top

Did you find this topic useful? Suggestions for other topics? write us!Internet Link

© 1999 microsoft corporation. all rights reserved. terms of useInternet Link.