묻고답하기

안녕하세요.

모 사이트에서 레이어를 이용한 메뉴소스를 다운받아  사용하는데요.

소스중에 보면 부메뉴 레이어 부분이 마우스의 위치에 따라 변경이 됩니다.

이 부메뉴 레이어를 고정 시킬 수 있는 방법이 있을런지요?

소스는 다음과 같습니다.


<html>
  <head>
    <title>링크에 마우스가 올라가면 레이어메뉴 박스가 나옵니다.</title>
<style>
<!--
A:link {color:#000000; text-decoration:none}
A:visited {color:#000000; text-decoration:none}
A:active {color:#000000; text-decoration:none}
A:hover {color:#000099; text-decoration:none}
.menuskin{position:absolute; width:165px; background-color:menu;
border:2px solid black; font:normal 12px Verdana; line-height:18px;
z-index:100; visibility:hidden; }

.menuskin a{ text-decoration:none; color:black; padding-left:10px;
padding-right:10px; }

#mouseoverstyle{ background-color:highlight; }

#mouseoverstyle a{ color:white; }
-->
</style>

<script language="JavaScript1.2">
<!---/
var linkset=new Array()
linkset[0]='<div class="menuitems"><a href="http://gif00.com.ne.kr/java/6/48.html"><b>현재페이지</b></a></div>'
linkset[0]+='<div class="menuitems"><a href="http://gif00.com.ne.kr/java/list/back.html" TARGET="_blank">JavaScript소스</a></div>'
linkset[0]+='<div class="menuitems"><a href="http://gif00.com.ne.kr/board3/" TARGET="_blank">시</a></div>'
linkset[0]+='<div class="menuitems"><a href="http://gif00.com.ne.kr/tag/font.html" TARGET="_blank">초보태그</a></div>'
linkset[0]+='<div class="menuitems"><a href="http://gif00.com.ne.kr/tag/color.html" TARGET="_blank">색상표</a></div>'
linkset[0]+='<div class="menuitems"><a href="http://gif00.com.ne.kr/test.html" TARGET="_blank">태그연습장</a></div>'
linkset[0]+='<div class="menuitems"><a href="http://gif00.com.ne.kr/sokdam/ga1.html" TARGET="_blank">속담</a></div>'
linkset[0]+='<div class="menuitems"><a href="http://gif00.com.ne.kr/sokdam/saja1.html" TARGET="_blank">사자성어</a></div>'


linkset[1]='<div class="menuitems"><a href="http://www.com.ne.kr/" TARGET="_blank">컴내꺼</a></div>'
linkset[1]+='<div class="menuitems"><a href="http://www.naver.com" TARGET="_blank">네이버</a></div>'
linkset[1]+='<div class="menuitems"><a href="http://www.yahoo.com" TARGET="_blank">야후</a></div>'
linkset[1]+='<div class="menuitems"><a href="http://www.hanmir.com" TARGET="_blank">한미르</a></div>'

var ie4=document.all&&navigator.userAgent.indexOf("Opera")==-1
var ns6=document.getElementById&&!document.all
var ns4=document.layers
function showmenu(e,which){
if (!document.all&&!document.getElementById&&!document.layers)
return
clearhidemenu()

menuobj=ie4? document.all.popmenu : ns6? document.getElementById("popmenu") : ns4? document.popmenu : ""
menuobj.thestyle=(ie4||ns6)? menuobj.style : menuobj

if (ie4||ns6)
menuobj.innerHTML=which
else{
menuobj.document.write('<layer name=gui bgColor=#E6E6E6 width=165 onmouseover="clearhidemenu()" onmouseout="hidemenu()">'+which+'</layer>')
menuobj.document.close()
}
menuobj.contentwidth=(ie4||ns6)? menuobj.offsetWidth : menuobj.document.gui.document.width
menuobj.contentheight=(ie4||ns6)? menuobj.offsetHeight : menuobj.document.gui.document.height
eventX=ie4? event.clientX : ns6? e.clientX : e.x
eventY=ie4? event.clientY : ns6? e.clientY : e.y

//Find out how close the mouse is to the corner of the window
var rightedge=ie4? document.body.clientWidth-eventX : window.innerWidth-eventX
var bottomedge=ie4? document.body.clientHeight-eventY : window.innerHeight-eventY

//if the horizontal distance isn't enough to accomodate the width of the context menu
if (rightedge<menuobj.contentwidth)
//move the horizontal position of the menu to the left by it's width
menuobj.thestyle.left=ie4? document.body.scrollLeft+eventX-menuobj.contentwidth : ns6? window.pageXOffset+eventX-menuobj.contentwidth : eventX-menuobj.contentwidth
else
//position the horizontal position of the menu where the mouse was clicked
menuobj.thestyle.left=ie4? document.body.scrollLeft+eventX : ns6? window.pageXOffset+eventX : eventX

//same concept with the vertical position
if (bottomedge<menuobj.contentheight)
menuobj.thestyle.top=ie4? document.body.scrollTop+eventY-menuobj.contentheight : ns6? window.pageYOffset+eventY-menuobj.contentheight : eventY-menuobj.contentheight
else
menuobj.thestyle.top=ie4? document.body.scrollTop+event.clientY : ns6? window.pageYOffset+eventY : eventY
menuobj.thestyle.visibility="visible"
return false
}
function contains_ns6(a, b) {
//Determines if 1 element in contained in another- by Brainjar.com
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}
function hidemenu(){
if (window.menuobj)
menuobj.thestyle.visibility=(ie4||ns6)? "hidden" : "hide"
}
function dynamichide(e){
if (ie4&&!menuobj.contains(e.toElement))
hidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
hidemenu()
}
function delayhidemenu(){
if (ie4||ns6||ns4)
delayhide=setTimeout("hidemenu()",500)
}
function clearhidemenu(){
if (window.delayhide)
clearTimeout(delayhide)
}

function highlightmenu(e,state){
if (document.all)
source_el=event.srcElement
else if (document.getElementById)
source_el=e.target
if (source_el.className=="menuitems"){
source_el.id=(state=="on")? "mouseoverstyle" : ""
}
else{
while(source_el.id!="popmenu"){
source_el=document.getElementById? source_el.parentNode : source_el.parentElement
if (source_el.className=="menuitems"){
source_el.id=(state=="on")? "mouseoverstyle" : ""
}
}
}
}
if (ie4||ns6)
document.onclick=hidemenu
/--->
</script>
  </head>

<body>

<div id="popmenu" class="menuskin" onMouseover="clearhidemenu();highlightmenu(event,'on')" onMouseout="highlightmenu(event,'off'+ '+ ');dynamichide(event)">
</div>
<font size="2" face="돋움체">
<li><a href="#" onMouseover="showmenu(event,linkset[0])" onMouseout="delayhidemenu()">이미지창고</a>
<li><a href="#" onMouseover="showmenu(event,linkset[1])" onMouseout="delayhidemenu()">포털 사이트</a>
</font>
</body>
</html>

스타일 시트 부분에서 조정하면 가능하다는 말도 들어서

이렇게 저렇게 바꾸어 보았지만 도저히 안돼네요.

아시는분 부탁좀 드리겠습니다.
글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
이와이 이미 로그인 되어있습니다. 팝업창 관련!! [2] file 2017.01.06 by 이와이
WINNY xe 업데이트 후 게시판 접속이 안되고 관리자 페이지에서도 접근이 안됩니다. [1] 2017.01.08 by Luatic™
HES 설치화면이 아예 나오지가 않네요 [1] 2017.01.14 by 기진곰
Jessie PHP7.0로 업데이트 하고 http500내부 오류라고 뜨는데요 [9] 2017.02.20 by 외계인이이쁘면어떡해
최빵 HTTP ERROR 500 메시지 해결방법 좀 알려주세요 [1] 2017.03.12 by J__
홈런볼11 데이터 이전 [2] 2017.03.12 by 휘즈
John IP로는 사이트가 뜨는데 도메인으로는 503 에러가 납니다. [1] 2017.03.31 by John
khami 위젯 페이지에서 모바일 페이지 설정 버튼을 누르면 500 에러  
SeunghyunLee 이모티콘 열면 창 세로 사이즈가 너무 좁습니다. [4] file 2017.04.13 by 달구벌
원이아빠 사용자정의 관리자만 보일수있는 태그삽입질문드립니다. file  
리베슈미르 워드프레스 데이터 이전 툴 http 500 에러 발생 문의  
alvin**** ㅠㅠ 살려주세요 졸업작품으로 홈페이지 간단하게 만들어서 연동하려고했느데 [1] 2017.05.28 by hittttte
코리스™ HTTP ERROR 500 [7] 2017.06.11 by 코리스™
리즈러브 슬라이더 질문입니다.  
펠릭스719af 서버 하드용량이 부족으로 http500오류 이후 사이트 복구방법 [1] 2017.07.14 by sejin7940
Jiwon A2 호스팅(싱가포르) XE 구동안됨 도와주세요. [2] file 2017.07.15 by Jiwon
vvccvv2 XE content 위젯 문제 (제발 도와주세요 ㅠㅠ) [6] 2017.07.17 by vvccvv2
청주native 익명 닉네임 색상 변경하기 도와주세요 ㅠㅠ [4] 2017.08.18 by DoorWeb
qwertylife 서버 사양 한번더 비교 부탁 드립니다ㅜ [4] 2017.09.07 by qwertylife
비미르 http 500 오류가 뜹니다 도움좀 부탁드립니다. [1] 2017.09.26 by 바이미스타벅스커피