본문 바로가기

카테고리 없음

[자바스크립트] [팝업창] IE용 슬라이드 메뉴 - 스르륵 내려왔다 스르륵 닫힘

<head>와 </head>부분에 넣어줍니다.
*****************************************
<SCRIPT language=javascript>
function animate1(onOrOff) {
if (onOrOff == 1) {
button1.mouseIn = 1;
timer = window.setTimeout("moveButton1(1);", 0, "JavaScript");
} else {
button1.mouseIn = 0;
timer = window.setTimeout("moveButton1(0);", 0, "JavaScript");
}
}

function moveButton1(onOrOff) {
if (onOrOff == 1 && button1.mouseIn == 1) {
if (button1.style.posTop < 0) {
button1.style.posTop = button1.style.posTop + 20;
timer = window.setTimeout("moveButton1(1);", 0, "JavaScript");
}
} else {
if (button1.mouseIn == 0 && button1.style.posTop > -170) {
button1.style.posTop = button1.style.posTop - 20;
timer = window.setTimeout("moveButton1(0);", 0, "JavaScript");
}
}
}
</SCRIPT>