节日快乐
代码:
<FONT id=font1 style="FONT-SIZE: 100pt; COLOR: #0066ff; FONT-FAMILY: 华文新魏">节日快乐</FONT>
<?import namespace = t urn = "urn:schemas-microsoft-com:time" implementation = "#default#time2" declareNamespace /> <t:animateColor attributeName = "color" targetElement = "font1" values = "#00FF00;#ffff00;#FF0000;#0000FF;" autoReverse = "true" dur = "6" repeatCount = "100">
</t:animateColor>
看懂这些代码:
文字代码不再解释。
<?import ......> 这组代码指定一种语言,我们原封套用就行了。
t:animateColor
颜色变换的元素
attributeName = "color"
指定哪种颜色变换
targetElement = "font1"
指定带有这个标志的标签变换颜色
values = "#00FF00;#ffff00;#FF0000;#0000FF;"
颜色变换的种类,随便写多少个(每个颜色之间用英文分号隔开)。 。
autoReverse = "true"
变化方式循环(变换顺序从左到右再从右到左) false不循环。
dur = "6"
变换一次的时间,单位“秒”
repeatCount = "100"
变换次数, indefinite 不断变换。< FONT>
</t:animateColor>
收尾。
注意:文字代码中红色 id=font1 相当门牌号码,下面红色 targetElement = "font1" 指定带这个id的标签发生变换。
所以要注意的两点:
1.在一组代码里他们的值必须一致。(这个值由数字和字母组成,随便编写)
2.同一个页面里,两组以上这个代码之间这个值必须不同。不然都不能显示了!!!
用这个代码时第一步就是改这两个值,
如一组是:
id=123a
targetElement = "123a"
则另一组是:
id=abcd
targetElement = "abcd"
|