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

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

본문 바로가기

사이트 내 전체검색

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

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,634건 62 페이지
  • RSS
기술자료 목록
1414
일반   15350  2013-08-18 15:15  
1413
etc쇼핑몰   16258  2013-08-17 00:42 ~ 2013-08-19 00:00  
1412
일반   14091  2013-08-16 18:42  
1411
그누보드   11796  2013-08-16 21:05  
1410
Adobe   36571  2013-08-13 23:32  
1409
MSSQL   12830  2013-08-08 22:14  
1408
그누보드   15028  2013-07-30 19:30 ~ 2021-08-02 21:49  
1407
그누보드   13798  2013-07-29 22:14  
1406
그누보드   22797  2013-07-25 23:48  
열람
JavaScript   35971  2013-07-24 22:44 ~ 2018-01-04 12:28  
1404
SNS   17533  2013-07-24 22:00 ~ 2018-06-20 22:07  
1403
그누보드   31234  2013-07-24 02:42  
1402
일반   15019  2013-07-21 22:18  
1401
일반   16659  2013-07-16 12:47 ~ 2016-02-22 00:00  
1400
그누보드   13603  2013-07-06 15:00 ~ 2022-04-26 09:41  
1399
그누보드   15851  2013-07-06 14:33 ~ 2021-08-02 22:39  
1398
전자결제   46967  2013-07-04 15:33 ~ 2017-11-06 04:14  
1397
JavaScript   21168  2013-07-02 12:11 ~ 2014-08-20 00:00  
1396
HTML   16070  2013-06-29 18:48  
1395
HTML   16534  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.