<DIV style=\"position:relative; top:30px; left:0px; width:700px;height:300 \"> <STYLE>.time { BEHAVIOR: url(#default#time2) filter: /*ALE*/ } </STYLE> <?import namespace = t urn = \"urn:schemas-microsoft-com:time\" implementation = \"#default#time2\" declareNamespace /> <IMG id=\"t2\" src=\"http://media.imhb.cn/homepic/2007/12/8/20071208225517_52486.gif\" style=\"position:absolute; left:0; top:0; width:300; height:212;filter:glow(color=#ee14d2 strength=20);color:white\">
<t:animate targetElement=\"t2\" attributeName=\"filters.glow.strength\" from=\"6\" to=\"0\" begin=\"0\" dur=\"1\" end=\"\" autoreverse=\"false\" repeatcount=\"indefinite\"/></div>
<DIV style=\"position:relative; top:30px; left:0px; width:700px; height:150\"> <STYLE>.time { BEHAVIOR: url(#default#time2) filter: /*ALE*/ } </STYLE> <?import namespace = t urn = \"urn:schemas-microsoft-com:time\" implementation = \"#default#time2\" declareNamespace />
<div id=z2 style=\"width:100%;filter:glow(color=#1e90ff strength=16);color:white\"><FONT color=#00ff00 face=楷书 size=7>
Glow滤镜</FONT></div>
<t:animate targetElement=\"z2\" attributeName=\"filters.glow.strength\" from=\"10\" to=\"0\" begin=\"0\" dur=\"1\" end=\"\" autoreverse=\"false\" repeatcount=\"indefinite\"/></div>
对以上这段代码的说明:
1)<DIV style=\"position:relative; top:30px; left:0px; width:700px; height:150\">是对以下内容的相对定位。
top:30px;是离顶部距离30px;left:0px; 是离左边距离0px;
2)<STYLE>.time { BEHAVIOR: url(#default#time2) filter: /*ALE*/ } </STYLE> <?import namespace = t urn = \"urn:schemas-microsoft-com:time\" implementation = \"#default#time2\" declareNamespace />
这是HTML+TIME下面指定内容的前缀
3)<div id=z2 style=\"width:100%;filter:glow(color=#1e90ff strength=16);color:white\">这段是Glow滤镜代码。
id=z2 是对这个滤镜的标签(注:与下面的 targetElement=\"z2\"必须一致,同一个页面不能使用同样的id)
4)<t:animate targetElement=\"z2\" attributeName=\"filters.glow.strength\" from=\"10\" to=\"0\" begin=\"0\" dur=\"1\" end=\"\" autoreverse=\"false\" repeatcount=\"indefinite\"/>这段是让Glow连续性变化的代码。
t:animate 是标记连续性地变化;
targetElement=\"z2\"表示目标单元为\"z2\",用来表示作用到\"z2\"上;
attributeName=\"filters.glow.strength\" 表示属性的名字是\"filters.glow.strength\" ;
from=\"10\" to=\"0\"表示变化的范围从10到0;
begin=\"0\" dur=\"1\" 表示从0秒钟开始变化,变化一次的时间过程为1秒钟;
autoreverse=\"false\"表示变化方式为不循环,true为循环;
repeatcount=\"indefinite\"表示变换次数为重复变化。
[ 本帖最后由 小白兔 于 2008-3-22 13:11 编辑 ] |