HBCMS更多的中文手册参考:

t:TIMELINE Attribute | timeline Property?deprecated)

DHTML中文手册

This page documents a feature of HTML+TIME 1.0, which was released in Microsoft?Internet Explorer 5. We recommend that you migrate your content to the latest version of HTML+TIME, which implements the SMIL 2.0 Working Draft. See the introduction to html+time overview for more information.

sets or retrieves the type of timeline associated with an html element.

dhtml语法

xml<ELEMENT t:TIMELINE = sType... >
Scriptingtime.timeline [ = sType ]

DHTML可能的值

sTypeStringthat specifies one of the following values:
exclExclusive timeline container element in a document. Only one HTML descendant of this element can play at a time.
noneDefault. Current element does not define a local timeline and has no affect on its contained time descendants.
parNew timeline container element in a document. All HTML descendants of this element have independent, or parallel, timing.
seqSequence timeline container element in a document. When the timeline of an element in the sequence ends, the next element begins playing.

The property is read/write. The property has a default value of none.

DHTML代码范例

This example uses the t:TIMELINE attribute to create a parallel time container.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<STYLE>
.time  { behavior: url(#default#time);}
</STYLE>
</HEAD>
<BODY BGCOLOR="white">
<SPAN ID="parent" CLASS="time" t:TIMELINE="par" t:BEGIN="0"
t:DUR="10">
<P>This paragraph inherits the "parallel" timeline set on its
parent &lt;SPAN&gt; element. It will be displayed for ten
seconds. <BR><BR>
</P>
<P CLASS="time" t:BEGIN="5">This paragraph also inherits the
"parallel" timeline set on its parent &lt;SPAN&gt; element, but it
can have independent timing attributes as well.<BR><BR>
</P>
</SPAN>
<P>This paragraph is not a child of the <SPAN> element
containing a timeline.</P>
</BODY>
</HTML>
This feature requires Microsoft?Internet Explorer 5 or later. Click the following icon to install the latest version. Then reload this page to view the sample.

是否符合公共标准

This property is a Microsoft extension to HTML+TIME (Timed Interactive Multimedia Extensions) Non-Microsoft link.

Applies To

time

更多语法参考

introduction to html+time, par, seq