請將以下文字插入body/body之間,就會得到和本網頁滑鼠一樣的效果。

記得去修改你所要的滑鼠旁文字喔!

(註:以下語法引自「艾伯特的網頁設計主題館」)

滑鼠旁文字特效語法:

<script>
<!--
   //anything follows cursor
   //by gary 
//put anything you want in this var and it will follow the cursor
   var follow='歡迎來到吳姥的秘密基地'
//don't change anything below
   if (document.all){document.write('<div id="curscroll" style="position:absolute;visibility:hidden">'+follow+'</div>')}
function followcursor()
   {if (document.all){curscroll.style.visibility="visible"}
   curscroll.style.left=document.body.scrollLeft+event.clientX+10
   curscroll.style.top=document.body.scrollTop+event.clientY+0}
   document.onmousemove=followcursor
//-->
   </script>