MODE Attribute | mode Property | DHTML中文手册 |
Sets or retrieves a variable that indicates whether an element transitions in or out.
dhtml语法
HTML <t:TRANSITIONFILTER MODE = sMode... > Scripting t:TRANSITIONFILTER.mode [ = sMode ]
DHTML可能的值
sMode String that specifies or receives one of the following values.
in Default. Determines that the element transitions in. out Determines that the element transitions out. The property is read/write. The property has a default value of in.
Remarks
The legal value of in indicates that the transition content becomes more visible as the transition progress increases, and out indicates that the transition content becomes less visible as the transition progress increases. The mode attribute does not automatically tie the transitionfilter to the beginning or end of the media. authors can use the begin attribute on the transitionfilter to indicate the begin time for the transitionfilter.
you can apply a transition to a media element at any time during its active period. if mode is set to in and the t:transitionfilter is applied to the media element in the middle of its active period, then the media element will disappear for a moment and transition in. if mode is set to out, then the media element will transition out and then immediately reappear.
you cannot return the default value of the mode property through script unless the default value has been set by the attribute or through script.
DHTML代码范例
The example below demonstrates the use of the mode attribute to transition renderable content in and out of visibility.
<HTML XMLNS:t = "urn:schemas-microsoft-com:time"> <HEAD> <STYLE> .time{behavior: url(#default#time2);} </STYLE> <?import namespace = t urn = "urn:schemas-microsoft-com:time" implementation = "#default#time2" /> </HEAD> <BODY> <t:TRANSITIONFILTER TYPE="barWipe" DUR="3" TARGETELEMENT="oDiv1" MODE="in" ID="transitionPlay1"/> <t:TRANSITIONFILTER TYPE="barWipe" DUR="3" TARGETELEMENT="oDiv2" MODE="out" ID="transitionPlay2"/> <DIV CLASS="time" BEGIN="0" ID="oDiv1" DUR="indefinite" STYLE="position:relative; left:20px; width:420px; height:100px; background-image:url(ART_time_progress.gif); background-repeat: no-repeat;"> </DIV> <DIV CLASS="time" BEGIN="0" ID="oDiv2" DUR="indefinite" STYLE="position:relative; left:20px; width:420px; height:100px; background-image:url(ART_time_progress.gif); background-repeat: no-repeat;"> </DIV> </BODY> </HTML>
applies to
t:TRANSITIONFILTER
更多语法参考
introduction to html+time, using html+time transitions, end