<HTML><HEAD>
<SCRIPT language=JavaScript>
<!--
var oldtext
var newtext
var newlink
var speed=10 // 쉐이크 속력 - 클수록 느리다
var i_speed=1.1
var i_text=1
var timer
function startshake(thislink) {
if (document.all) {
newlink=eval("document.getElementById('"+thislink+"')")
oldtext=newlink.childNodes[0].nodeValue
shaketext()
}
}
function shaketext() {
if (speed<=200) {
if (i_text<0) {newtext=oldtext+" "}
else if (i_text>0) {newtext=" "+oldtext}
newlink.childNodes[0].nodeValue=newtext;
i_text=i_text*-1
speed=speed*i_speed
timer=setTimeout("shaketext()",speed)
}
else {
clearTimeout(timer)
speed=20
newlink.childNodes[0].nodeValue=oldtext;
}
}
function stopshake() {
if (document.all) {
clearTimeout(timer)
speed=20
newlink.childNodes[0].nodeValue=oldtext;
}
}
//-->
</SCRIPT>
<!--
링크가 쉐이크 되는부분이다.
추가시는 name의 link만 차례대로 해주면 된다.
중요 : font를 이용하면 안된다.
//-->
<META content="MSHTML 6.00.2600.0" name=GENERATOR></HEAD>
<BODY> <A onmouseover=startshake(this.name)
onmouseout=stopshake() href="http://lhk6873.nazoa.cc/" target=_blank
name=link1>테스트</A><BR> <A onmouseover=startshake(this.name)
onmouseout=stopshake() href="http://lhk6873.nazoa.cc/" target=_blank
name=link2>넘 웃긴다</A><BR> <A onmouseover=startshake(this.name)
onmouseout=stopshake() href="http://lhk6873.nazoa.cc/" target=_blank
name=link3>미친메뉴</A><BR> <A onmouseover=startshake(this.name)
onmouseout=stopshake() href="http://lhk6873.nazoa.cc/" target=_blank
name=link4>나름대로는 귀엽당</A><BR> <A
onmouseover=startshake(this.name) onmouseout=stopshake()
href="http://lhk6873.nazoa.cc/" target=_blank name=link5>잼있당</A></BODY></HTML>
'Javascript' 카테고리의 다른 글
on.off 기능의 자동 레이어 (0) | 2016.05.30 |
---|---|
파란물방울이 내려요 (0) | 2016.05.30 |
이미지 fade in, fade out 효과 (0) | 2016.05.30 |
나의 홈피를 즐겨찾기에 등록하게 하기 (0) | 2016.05.30 |
자바 스크립트 직접 만들어 올리기 (0) | 2016.05.30 |