본문 바로가기
블로그 & IT

우측배너소스/우측스크롤배너소스/우측배너/따라다니는배너소스/우측소스

by kimdongyong 2010. 2. 26.


우선 이소스는 먼저.
<head></head>
사이에 넣어주면 된다...
먼저 자바스크립트 소스를 먼저 넣어주고....



<SCRIPT>
var cm=null;
document.onclick = new Function("show(null)")
function getPos(el,sProp) {
var iPos = 0
while (el!=null) {
iPos+=el["offset" + sProp]
el = el.offsetParent
}
return iPos

}

function show(el,m) {
if (m) {
m.style.display='';
m.style.pixelLeft = getPos(el,"Right")
m.style.pixelTop = getPos(el,"Top") + el.offsetHeight
}
if ((m!=cm) && (cm)) cm.style.display='none'
cm=m
}
</SCRIPT>

<SCRIPT LANGUAGE="JavaScript">
function scroll(){
var a=document.body.scrollTop+30
menu.style.top=a
}
</SCRIPT>



<body>
</body>
요기 사이에 이 소스를 넣어주면 된다.
가급적 body가시작하는 바로 아래 넣어주면 관리하기쉽다.



<body onScroll="scroll()">
<div id="menu" style="position:absolute;left:810px; top:30px; width:150px; height:500px; z-index:1">
<table><tr><td>       요기에 이미지를 넣어주면된다..         </td></tr></table>
</div>
<table><tr><td height="700"></td></tr></table>

댓글