마우스로 탭 오버시 다른 내용(최근게시글) 보이기 > 기술자료 | 해피정닷컴

마우스로 탭 오버시 다른 내용(최근게시글) 보이기 > 기술자료

본문 바로가기

사이트 내 전체검색

마우스로 탭 오버시 다른 내용(최근게시글) 보이기 > 기술자료

JavaScript 마우스로 탭 오버시 다른 내용(최근게시글) 보이기

페이지 정보


본문




1. table 로 구성하기

<script>
// LAYER SHOW HIDE
function Lbbs(stat){
  if (stat == 1){
    document.all.Lbbs1.style.display = "block";
    document.all.Lbbs2.style.display = "none";
    document.all.Lbbs3.style.display = "none";
  } else if (stat == 2){  
    document.all.Lbbs1.style.display = "none";
    document.all.Lbbs2.style.display = "block";
    document.all.Lbbs3.style.display = "none";
  } else if (stat == 3){  
    document.all.Lbbs1.style.display = "none";
    document.all.Lbbs2.style.display = "none";
    document.all.Lbbs3.style.display = "block";
  }
}
</script>
<!-- START : 최근게시물 -->
<div id="Lbbs" style="z-index:1; border-width:0px; border-style:none; visibility: visible;">
    <!-- Board 1 -->
    <div id="Lbbs1" style="display: block;">
        <table width="320" border="0" cellpadding="0" cellspacing="0">
            <tr>
                <td width="50"><a href="board1.html" onfocus="blur()" onmouseover="Lbbs(1)"><img src="img1_on.gif" alt=""></a></td>
                <td width="50"><a href="board2.html" onfocus="blur()" onmouseover="Lbbs(2)"><img src="img2.gif" alt=""></a></td>
                <td width="50"><a href="board3.html" onfocus="blur()" onmouseover="Lbbs(3)"><img src="img3.gif" alt=""></a></td>
                <td align="right"><a href="board1.html"><img src="img/img_more.gif" alt="" /></a></td>
            </tr>
            <tr>
                <td colspan="4">게시글리스트</td>
            </tr>
        </table>
    </div>
    <!-- Board 2 -->
    <div id="Lbbs2" style="display: none;">
        <table width="320" border="0" cellpadding="0" cellspacing="0">
            <tr>
                <td width="50"><a href="board1.html" onfocus="blur()" onmouseover="Lbbs(1)"><img src="img1.gif" alt=""></a></td>
                <td width="50"><a href="board2.html" onfocus="blur()" onmouseover="Lbbs(2)"><img src="img2_on.gif" alt=""></a></td>
                <td width="50"><a href="board3.html" onfocus="blur()" onmouseover="Lbbs(3)"><img src="img3.gif" alt=""></a></td>
                <td align="right"><a href="board2.html"><img src="img/img_more.gif" alt=""></a></td>
            </tr>
            <tr>
                <td colspan="4">게시글리스트</td>
            </tr>
        </table>
    </div>
    <!-- Board 3  -->
    <div id="Lbbs3" style="display: none;">
        <table width="320" border="0" cellpadding="0" cellspacing="0">
            <tr>
                <td width="50"><a href="board1.html" onfocus="blur()" onmouseover="Lbbs(1)"><img src="img1.gif" alt=""></a></td>
                <td width="50"><a href="board2.html" onfocus="blur()" onmouseover="Lbbs(2)"><img src="img2.gif" alt=""></a></td>
                <td width="50"><a href="board3.html" onfocus="blur()" onmouseover="Lbbs(3)"><img src="img3_on.gif" alt=""></a></td>
                <td align="right"><a href="board3.html"><img src="img/img_more.gif" alt=""></a></td>
            </tr>
            <tr>
                <td colspan="4">게시글리스트</td>
            </tr>
        </table>
    </div>
    <!-- //Board  -->
</div>


2. div 로 구성하기

<script>
// LAYER SHOW HIDE
function Lbbs(stat){
  if (stat == 1){
    document.all.Lbbs1.style.display = "block";
    document.all.Lbbs2.style.display = "none";
    document.all.Lbbs3.style.display = "none";
  } else if (stat == 2){  
    document.all.Lbbs1.style.display = "none";
    document.all.Lbbs2.style.display = "block";
    document.all.Lbbs3.style.display = "none";
  } else if (stat == 3){  
    document.all.Lbbs1.style.display = "none";
    document.all.Lbbs2.style.display = "none";
    document.all.Lbbs3.style.display = "block";
  }
}
</script>
<!-- START : 최근게시물 -->
<div id="Lbbs" style="z-index:1; border-width:0px; border-style:none; visibility: visible;">
    <!-- Board 1 -->
    <div id="Lbbs1" style="display: block;">
        <div style="border-bottom:1px solid #d9d9d9;">
            <div style="float:left;"><a href="board1.html" onfocus="blur()" onmouseover="Lbbs(1)"><img src="img1_on.png"></a></div>
            <div style="float:left;"><a href="board2.html" onfocus="blur()" onmouseover="Lbbs(2)"><img src="img2.png"></a></div>
            <div style="float:left;"><a href="board3.html" onfocus="blur()" onmouseover="Lbbs(3)"><img src="img3.png"></a></div>
            <div style="float:right;"><a href="board1.html"><img src="img_more.png"></a></div>
            <div style="clear:both;"></div>
        </div>
        <div style="min-height:110px;">게시글리스트</div>
    </div>
    <!-- Board 2 -->
    <div id="Lbbs2" style="display: none;">
        <div style="border-bottom:1px solid #d9d9d9;">
            <div style="float:left;"><a href="board1.html" onfocus="blur()" onmouseover="Lbbs(1)"><img src="img1.png"></a></div>
            <div style="float:left;"><a href="board2.html" onfocus="blur()" onmouseover="Lbbs(2)"><img src="img2_on.png"></a></div>
            <div style="float:left;"><a href="board3.html" onfocus="blur()" onmouseover="Lbbs(3)"><img src="img3.png"></a></div>
            <div style="float:right;"><a href="board2.html"><img src="img_more.png"></a></div>
            <div style="clear:both;"></div>
        </div>
        <div style="min-height:110px;">게시글리스트</div>
    </div>
    <!-- Board 3  -->
    <div id="Lbbs3" style="display: none;">
        <div style="border-bottom:1px solid #d9d9d9;">
            <div style="float:left;"><a href="board1.html" onfocus="blur()" onmouseover="Lbbs(1)"><img src="img1.png"></a></div>
            <div style="float:left;"><a href="board2.html" onfocus="blur()" onmouseover="Lbbs(2)"><img src="img2.png"></a></div>
            <div style="float:left;"><a href="board3.html" onfocus="blur()" onmouseover="Lbbs(3)"><img src="img3_on.png"></a></div>
            <div style="float:right;"><a href="board3.html"><img src="img_more.png"></a></div>
            <div style="clear:both;"></div>
        </div>
        <div style="min-height:110px;">게시글리스트</div>
    </div>
    <!-- //Board  -->
</div>

댓글목록

등록된 댓글이 없습니다.


Total 2,641건 62 페이지
  • RSS
기술자료 목록
1421
일반   15326  2013-08-18 15:15  
1420
etc쇼핑몰   16229  2013-08-17 00:42 ~ 2013-08-19 00:00  
1419
일반   14073  2013-08-16 18:42  
1418
그누보드   11778  2013-08-16 21:05  
1417
Adobe   36371  2013-08-13 23:32  
1416
MSSQL   12809  2013-08-08 22:14  
1415
그누보드   14998  2013-07-30 19:30 ~ 2021-08-02 21:49  
1414
그누보드   13777  2013-07-29 22:14  
1413
그누보드   22765  2013-07-25 23:48  
열람
JavaScript   35949  2013-07-24 22:44 ~ 2018-01-04 12:28  
1411
SNS   17512  2013-07-24 22:00 ~ 2018-06-20 22:07  
1410
그누보드   31188  2013-07-24 02:42  
1409
일반   14996  2013-07-21 22:18  
1408
일반   16639  2013-07-16 12:47 ~ 2016-02-22 00:00  
1407
그누보드   13586  2013-07-06 15:00 ~ 2022-04-26 09:41  
1406
그누보드   15839  2013-07-06 14:33 ~ 2021-08-02 22:39  
1405
전자결제   46922  2013-07-04 15:33 ~ 2017-11-06 04:14  
1404
JavaScript   21144  2013-07-02 12:11 ~ 2014-08-20 00:00  
1403
HTML   16056  2013-06-29 18:48  
1402
HTML   16513  2013-06-29 18:47  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.