onmouseover시 onmouseout까지 따라다니는 레이어 띄우기..

· 15년 전 · 1738

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
 <head>
  <title> New Document </title>
  <meta name="Generator" content="EditPlus">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
 </head>

 <body>
  <style>
div.none { padding:15px 15px 15px 15px; width:370px; position:absolute; border-width:3; border-color:#cccccc; border-style:solid;font-size:9pt; background-color:#FFFFFF }
</style>
<script>
<!--
var preview="";
var gobj="";
function attachEvent_(obj, evt, fuc, useCapture) {
  if(!useCapture) useCapture=false;
  if(obj.addEventListener) { // W3C DOM 지원 브라우저
    return obj.addEventListener(evt,fuc,useCapture);
  } else if(obj.attachEvent) { // MSDOM 지원 브라우저
    return obj.attachEvent("on"+evt, fuc);
  } else { // NN4 나 IE5mac 등 비 호환 브라우저
    MyAttachEvent(obj, evt, fuc);
    obj['on'+evt]=function() { MyFireEvent(obj,evt) };
  }
}

function detachEvent_(obj, evt, fuc, useCapture) {
  if(!useCapture) useCapture=false;
  if(obj.removeEventListener) {
    return obj.removeEventListener(evt,fuc,useCapture);
  } else if(obj.detachEvent) {
    return obj.detachEvent("on"+evt, fuc);
  } else {
    MyDetachEvent(obj, evt, fuc);
    obj['on'+evt]=function() { MyFireEvent(obj,evt) };
  }
}

function MyAttachEvent(obj, evt, fuc) {
  if(!obj.myEvents) obj.myEvents= {};
  if(!obj.myEvents[evt]) obj.myEvents[evt]=[];
  var evts = obj.myEvents[evt];
  evts[evts.length]=fuc;
}

function MyFireEvent(obj, evt) {
  if(!obj.myEvents || !obj.myEvents[evt]) return;
  var evts = obj.myEvents[evt];
  for (var i=0;i<len;i++) {
    len=evts.length;
    evts[i]();
  }
}

function previewShow(e, obj, pv) {
  preview=pv;
  gobj=obj;
  attachEvent_(obj, "mousemove", previewMove, false);
  attachEvent_(obj, "mouseout", previewHide, false);
}

function previewMove(e) {
  var hb = document.getElementById(preview);
  if(hb.parentElement) hb.parentElement.style.display="";
  else hb.parentNode.style.display="";
  var evt = e ? e : window.event;
  var posx=0;
  var posy=0;

  if (evt.pageX || evt.pageY) { // pageX/Y 표준 검사
    posx = evt.pageX +8;
    posy = evt.pageY +16;
  } else if (evt.clientX || evt.clientY) { //clientX/Y 표준 검사 Opera
    posx = evt.clientX +10;
    posy = evt.clientY +20;
    if (window.event) { // IE 여부 검사
      posx += document.body.scrollLeft;
      posy += document.body.scrollTop;
     }
  }

  hb.style.left = posx + "px";
  hb.style.top = posy + "px";
}

function previewHide() {
  var hb = document.getElementById(preview);
  if(hb.parentElement) hb.parentElement.style.display="none";
  else hb.parentNode.style.display="none";

  detachEvent_(gobj,"mousemove", previewMove, false);
}
-->
</script>
</head>

<body>
<a href="#" onmouseover="previewShow(event,this,'tt_kin_1');">window.<b>attachEvent</b> 의 사용법</a>
<span style=display:none><div id=tt_kin_1 class=none> window.<b>attachEvent</b>( 'onload', ff);        ===========================    이렇게 썼을때는 잘되는데요  아래처럼 쓰고...</div></span>
<br><br>
<a href="#" onmouseover="previewShow(event,this,'tt_kin_2');">자바스크립트(select 스타일)어떻게 한거지 알려주세요.</a>
<span style=display:none><div id=tt_kin_2 class=none><img src="http://static.naver.com/kin/ending/icon_medal_q.gif">예전에 세이클럽에있었던 select 꾸미기 스타일 스크립트있었죠,   네이버 뉴스란에도 있었던 select  ...</div></span>
</body>

 </body>
</html>

[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
15년 전 조회 1,225
15년 전 조회 1,312
15년 전 조회 1,273
15년 전 조회 1,301
15년 전 조회 1,368
15년 전 조회 868
15년 전 조회 803
15년 전 조회 782
15년 전 조회 1,476
15년 전 조회 1,267
15년 전 조회 1,100
15년 전 조회 1,104
15년 전 조회 1,495
15년 전 조회 3,534
15년 전 조회 1,401
15년 전 조회 2,191
15년 전 조회 1,456
15년 전 조회 1,277
15년 전 조회 2,954
15년 전 조회 1,926
15년 전 조회 2,825
15년 전 조회 2,927
15년 전 조회 1,672
15년 전 조회 1,367
15년 전 조회 1,879
15년 전 조회 1,288
15년 전 조회 1,589
15년 전 조회 1,479
15년 전 조회 1,881
15년 전 조회 2,028
15년 전 조회 1,288
15년 전 조회 1,713
15년 전 조회 1,519
15년 전 조회 1,352
15년 전 조회 1,388
15년 전 조회 1,731
15년 전 조회 1,161
15년 전 조회 1,341
15년 전 조회 2,989
15년 전 조회 1,809
15년 전 조회 1,180
15년 전 조회 1,204
15년 전 조회 1,663
15년 전 조회 1,693
15년 전 조회 1,937
15년 전 조회 1,456
15년 전 조회 1,830
15년 전 조회 1,086
15년 전 조회 1,442
15년 전 조회 1,739
15년 전 조회 3,098
15년 전 조회 1,480
15년 전 조회 1,485
15년 전 조회 1,337
15년 전 조회 1,250
15년 전 조회 1,249
15년 전 조회 3,846
15년 전 조회 3,234
15년 전 조회 2,393
15년 전 조회 2,830
15년 전 조회 1,937
15년 전 조회 1,487
15년 전 조회 1,471
15년 전 조회 2,786
15년 전 조회 1,322
15년 전 조회 2,372
15년 전 조회 1,164
15년 전 조회 2,311
15년 전 조회 1,242
15년 전 조회 2,919
15년 전 조회 1,180
15년 전 조회 1,622
15년 전 조회 1,156
15년 전 조회 3,365
15년 전 조회 1,742
15년 전 조회 1,736
15년 전 조회 1,763
15년 전 조회 1,817
15년 전 조회 1,413
15년 전 조회 2,165
15년 전 조회 1,689
15년 전 조회 1,300
15년 전 조회 3,193
15년 전 조회 1,526
15년 전 조회 1,753
15년 전 조회 1,511
15년 전 조회 2,393
15년 전 조회 2,417
15년 전 조회 2,038
15년 전 조회 1,410
15년 전 조회 1,663
15년 전 조회 1,335
15년 전 조회 1,297
15년 전 조회 1,547
15년 전 조회 2,907
15년 전 조회 2,945
15년 전 조회 1,923
15년 전 조회 1,434
15년 전 조회 1,592
15년 전 조회 1,585