COMING SOON 🚀

jquery 드롭다운메뉴 질문입니다.

· 13년 전 · 3965
index 파일입니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
 <meta http-equiv="Content-Type" content="text/html; charset=euc-kr" />
 <title></title>
 <link type="text/css" rel="stylesheet" href="type/common.css" />
 <script type="text/javascript" src="type/jquery-1.7.2.min.js"></script>
</head>
<body>
 <div id="header">
  <h1><a href="/"><img src="image/logo.jpg"  /></a></h1>
  <div class="navigation">
   <ul class="topnav">
    <li><a href="#">회사소개</a>
     <ul class="subnav">
      <li><a href="#">Sub Nav Link</a></li>
      <li><a href="#">Sub Nav Link</a></li>
     </ul>
    </li>
    <li><a href="#">사업개요</a>
     <ul class="subnav">
      <li><a href="#">Sub Nav Link</a></li>
      <li><a href="#">Sub Nav Link</a></li>
     </ul>
    </li>
   </ul>
  </div>
  
 <script>
 $(document).ready(function(){
 $("ul.subnav").parent().append("<span></span>");
    $("ul.topnav li").mouseover(function() {
        $(this).parent().find("ul.subnav").slideDown('fast').show();
        $(this).parent().hover(function() {  
        }, function(){    
            $(this).parent().find("ul.subnav").slideUp('slow');
        });  
        }).hover(function() {   
            $(this).addClass("subhover");
        }, function(){
            $(this).removeClass("subhover");
  });  
 }); 
 </script>
</body>
</html>
 
css파일입니다.
/*navigation*/
ul.topnav {padding:0 20px; margin:0; width:920px; background:#222; font-size:1.2em; background:url() repeat-x;}
ul.topnav li {margin:0; padding:0 15px 0 0; position:relative;}
ul.topnav li a {padding:10px 5px; color:#29f483; display:block; text-decoration:none; float:left;}  
ul.topnav li a:hover {background:url() no-repeat center top;}
/*ul.topnav li span {width:17px; height:35px; float:left; background:url(1.jpg) no-repeat center top;}*/
/*ul.topnav li span.subhover {background-position:center bottombottom; cursor:pointer;}*/
ul.topnav li ul.subnav {position:absolute; left:0; top:35px; background:#333; margin:0; padding:0; display:none; float:left; width:170px; border:1px solid #111;}
ul.topnav li ul.subnav li{margin:0; padding:0; border-top:1px solid #252525; border-bottom:1px solid #444; clear:both; width:170px;}
html ul.topnav li ul.subnav li a {float:left; width:145px; background:#333 url() no-repeat 10px center; padding-left:20px;} html ul.topnav li ul.subnav li a:hover {background:#222 url() no-repeat 10px center;}
 
원래 소스는 메뉴 옆 빈공간을 만들어 클릭시에 메뉴가 드롭다운 되게 하는 구조입니다.
제가 수정한 부분은 bold처리 된 부분이며, 위 소스대로 수정 후 실행시 아시다시피 모든 메뉴가 한번에 드롭다운 됩니다.
메뉴에 마우스 오버를 했을 시 마우스오버 된 메뉴의 서브메뉴만 노출되게 하고 싶습니다.
조언부탁드립니다.
 
html의 script 수정부분은 ul.topnav li span 부분을 ul.topnav li 로 수정하였으며, css는 수정하지 않았으며 주석처리만 해놓았습니다.
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 2,898
13년 전 조회 3,820
13년 전 조회 1,500
13년 전 조회 3,010
13년 전 조회 2,371
13년 전 조회 4,163
13년 전 조회 4,226
13년 전 조회 2,010
13년 전 조회 5,035
13년 전 조회 2,143
13년 전 조회 2,307
13년 전 조회 2,756
13년 전 조회 2,712
13년 전 조회 1,783
13년 전 조회 1,956
13년 전 조회 3,867
13년 전 조회 1,945
13년 전 조회 2,448
13년 전 조회 3,248
13년 전 조회 3,035
13년 전 조회 1,779
13년 전 조회 2,407
13년 전 조회 4,739
13년 전 조회 2,052
13년 전 조회 2,510
13년 전 조회 1,990
13년 전 조회 2,193
13년 전 조회 2,653
13년 전 조회 1,747
13년 전 조회 2,661
13년 전 조회 2,313
13년 전 조회 1,847
13년 전 조회 1만
13년 전 조회 1,986
13년 전 조회 1,832
13년 전 조회 1,922
13년 전 조회 2,644
13년 전 조회 2,003
13년 전 조회 2,122
13년 전 조회 1,781
13년 전 조회 1,624
13년 전 조회 5,783
13년 전 조회 2,043
13년 전 조회 2,092
13년 전 조회 1,903
13년 전 조회 7,774
13년 전 조회 1,941
13년 전 조회 2,275
13년 전 조회 2,243
13년 전 조회 3,966
13년 전 조회 1,990
13년 전 조회 3,765
13년 전 조회 2,296
13년 전 조회 2,881
13년 전 조회 2,422
13년 전 조회 2,576
13년 전 조회 2,832
13년 전 조회 1,669
13년 전 조회 1,859
13년 전 조회 1,865
13년 전 조회 2,163
13년 전 조회 2,178
13년 전 조회 2,900
13년 전 조회 1,779
13년 전 조회 1,846
13년 전 조회 4,260
13년 전 조회 1,973
13년 전 조회 2,263
13년 전 조회 2,668
13년 전 조회 2,124
13년 전 조회 3,035
13년 전 조회 1,782
13년 전 조회 3,898
13년 전 조회 2,289
13년 전 조회 2,555
13년 전 조회 2,016
13년 전 조회 2,160
13년 전 조회 2,559
13년 전 조회 2,226
13년 전 조회 2,762
13년 전 조회 2,578
13년 전 조회 1,827
13년 전 조회 3,910
13년 전 조회 2,026
13년 전 조회 3,081
13년 전 조회 1,950
13년 전 조회 3,066
13년 전 조회 2,910
13년 전 조회 2,935
13년 전 조회 1,867
13년 전 조회 2,422
13년 전 조회 2,186
13년 전 조회 3,138
13년 전 조회 2,031
13년 전 조회 2,047
13년 전 조회 2,328
13년 전 조회 2,088
13년 전 조회 2,009
13년 전 조회 3,363
13년 전 조회 2,185