標準教學區貼文範例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>