标准教学区贴文范例1
BY KC715
下影系列〔参数:Positive:透明度。OffX:水平位移。OffY:垂直位移〕复制程式
<font style=width:100%;filter:DropShadow(Color=#009900,OffX=-2,OffY=-2,Positive=1)>文字产生下方阴影的效果</font>
波浪系列〔参数:Freq=波浪数。Lightstrength=亮度。Phase=相角。Strength=幅度〕复制程式
<div style='width:100%;font-size:20;color:009900;Filter:Wave(Freq=2,Lightstrength=30,Phase=0,Strength=2)'>即可将文字产生波浪的效果</div>
变大系列复制程式
<font style=cursor:hand onMouseover=this.size=5 onmouseout=this.size=3>滑鼠移过来即可看到变大效果</font>
换色系列复制程式
<font style=cursor:hand onMouseover="this.color='ff0000'"onmouseout="this.color='">滑鼠移过来即可看到换色效果</font>
换字系列〔字数必须要跟换字过后的字数一样显得较逼真唷〕复制程式
<span style=cursor:hand onmouseout="this.innerText='滑鼠移过来'"onmouseover="this.innerText='在移开看看'">滑鼠移过来</span>
鼠碰系列复制程式
<span style=cursor:hand onmouseover=this.innerText='触碰系列'>滑鼠触碰字即可看到换字效果</span>
鼠离系列复制程式
<span style=cursor:hand onmouseout=this.innerText='触离系列'>滑鼠触离字即可看到效果</span>
鼠左系列复制程式
<span style=cursor:hand onclick=this.innerText='触左系列'>滑鼠触左字即可看到效果</span>
鼠按系列复制程式
<span style=cursor:hand onmousedown=this.innerText='触按系列'>滑鼠触按字即可看到效果</span>
变色系列〔在同一个页面
id记得不可以一样、最好别在同个页面上放上两个类似的效果!切记切记〕
鼠态系列〔动〕复制程式
<body onmousemove=k0.style.color=Math.random()*255*255*255><font id=k0>随鼠动态彩字系列</font>
触动系列〔字〕复制程式
<font id=k1 onmousemove=k1.style.color=Math.random()*255*255*255 style=cursor:hand>文字里滑鼠触动即可看到效果</font>
触离系列〔字〕复制程式
<font id=k2 onmouseout=k2.style.color=Math.random()*255*255*255 style=cursor:hand>文字里滑鼠触离即可看到效果</font>
触碰系列〔字〕复制程式
<font id=k3 onmouseover=k3.style.color=Math.random()*255*255*255 style=cursor:hand>文字里滑鼠触碰即可看到效果</font>
触左系列〔字〕复制程式
<font id=k4 onclick=k4.style.color=Math.random()*255*255*255 style=cursor:hand>文字里滑鼠触左键即可看到效果</font>
触按系列〔字〕复制程式
<font id=k5 onmousedown=k5.style.color=Math.random()*255*255*255 style=cursor:hand>文字里滑鼠触按键即可看到效果</font>
自动系列〔200为0.2秒数,1000代表1秒,就是每0.2秒钟变换一次色彩〕复制程式
<img src=width=0 height=0 onerror=setInterval('k6.style.color=Math.random()*255*255*255',200)><font id=k6>彩字变变变系列</font>