<!-- <BODY></BODY> 부분에 아래의 스크립트를 복사해 넣으세요-->
<STYLE>
a{position:stretch;color:lime;}
body{background:black;color:white}
</STYLE>
<SCRIPT>
function Init()
{
var i=0;
while(document.links.length>i)
{
document.links(i).style.position="";
document.links(i).style.height=document.links(i).style.width+0;
i++;
}
}
function handleevent()
{
if(event.type=="mouseover") // 마우스 오버 이벤트 발생시
if(event.srcElement.tagName=="A") // 하이퍼링크 요소에 대해 이벤트 설정
{
event.srcElement.style.filter="shadow(color=lime,enabled=1)"; // 그림자 색상 설정
}
if (event.type=="mouseout") // 마우스 아웃기
if(event.srcElement.tagName=="A")
{
event.srcElement.style.filter=""; // 효과 해제
}
}
document.onmouseover=handleevent;
document.onmouseout=handleevent;
document.body.onload=Init;
</SCRIPT>
<CENTER><H1>
<a href="http://bizserver.new21.net" title="자바스크립트 소스뱅크 입니다"> 홈페이지</a><font size="4">
</H1></CENTER>