http://oxtag.com/html/ex/link_filter.html
<html>
<head>
<script>
<!-- Beginning of JavaScript -
var i_strength=0
var max_strength=6
var shadowcolor="red" <!-- 그림자색깔 -->
var timer
var speed=50
var thisobj
// URL 수정과 속성을 지정해주세요.
function gotoURL(){
var newWindow=window.open("http://hacoo.tistory.com","ss","status,directories,menubar,scrollbars,titlebar,toolbar,location,resizable,HEIGHT=600,WIDTH=800")
newWindow.focus()
}
function stopfilter(thisdiv){
if (document.all) {
clearTimeout(timer)
thisobj=thisdiv
thisobj.style.filter=" "
}
}
function startfilter(thisdiv){
if (document.all) {
clearTimeout(timer)
thisobj=thisdiv
morefilter()
}
}
function morefilter(){
if (i_strength <=max_strength) {
thisobj.style.filter="glow(color="+shadowcolor+", strength="+i_strength+")"
i_strength++
timer = setTimeout("morefilter()",speed)
}
else {
clearTimeout(timer)
lessfilter()
}
}
function lessfilter(){
if (i_strength >=0) {
thisobj.style.filter="glow(color="+shadowcolor+", strength="+i_strength+")"
i_strength--
timer = setTimeout("lessfilter()",speed)
}
else {
clearTimeout(timer)
morefilter()
}
}
// - End of JavaScript - -->
</script>
<STYLE TYPE="text/css">
.filter {
position:absolute;
left:40px;
font-family:arial;
font-size=16pt;
color:red;
text-decoration:underline
}
</STYLE>
</head>
<body bgcolor="#ffffff" link="#FFFFFF" alink="#FFFFFF" vlink="#FFFFFF">
<DIV class=filter style="cursor:hand" onMouseOver="startfilter(this)" onMouseOut="stopfilter(this)" onClick="gotoURL()">HakunaMatata </DIV> <!--링크텍스트를 입력한다-->
</body>
</html>
'인터넷정보' 카테고리의 다른 글
마우스에서 물방울이 커지면서 올라가는 스크립트 (0) | 2007.10.17 |
---|---|
글자가 변하는 뉴스티커 (공지용으로 쓰면 좋습니다.) (0) | 2007.10.17 |
글자가 변하는 뉴스티커 (공지용으로 쓰면 좋습니다.) (0) | 2007.10.17 |
쿠키값이 적용되어서 처음 방문시만 자동으로 뜨는 즐겨찾기 창 (0) | 2007.10.17 |
쿠키값이 적용되어서 처음 방문시만 자동으로 뜨는 즐겨찾기 창 (0) | 2007.10.17 |
링크된 텍스트에 마우스 오버시 색 번짐 효과 (0) | 2007.10.17 |
링크된 이미지에 마우스 오버시 흐림효과 (0) | 2007.10.17 |
링크된 이미지에 마우스 오버시 흐림효과 (0) | 2007.10.17 |
링크된 텍스트 마우스 오버시 떨림효과 (0) | 2007.10.17 |
링크된 텍스트 마우스 오버시 떨림효과 (0) | 2007.10.17 |