모바일에서 그누보드 메뉴를 사용할때...
본문
그누보드에서 출력되는 모바일메뉴 사용시에
대메뉴(1dept)-1
서브메뉴(2dept)-1-1
서브메뉴(2dept)-1-2
대메뉴(1dept)-2
서브메뉴(2dept)-2-1
서브메뉴(2dept)-2-2
이런식으로 되어있는것을
서브메뉴는 기본적으로 숨겼다가
대메뉴(1dept)-1을 클릭했을때
그에 속한 서브메뉴만 아래로 슬라이드되게끔 토글메뉴를 만들고 싶은데
어떻게 해야될지 모르겠네요
도와주세요~
http://kfpcc.cafe24.com/index.php?device=mobile
여기에서 작업중이며,
소스는 이렇게 넣어놓은 상태입니다.
<div id="gnb" class="hd_div">
</div>
<?php
$sql = " select *
from {$g5['menu_table']}
where me_mobile_use = '1'
and length(me_code) = '2'
order by me_order, me_id ";
$result = sql_query($sql, false);
for($i=0; $row=sql_fetch_array($result); $i++) {
?>
<li class="gnb_1dli">
<a href="<?php echo $row['me_link']; ?>" target="_<?php echo $row['me_target']; ?>" class="gnb_1da"><?php echo $row['me_name'] ?></a>
<?php
$sql2 = " select *
from {$g5['menu_table']}
where me_mobile_use = '1'
and length(me_code) = '4'
and substring(me_code, 1, 2) = '{$row['me_code']}'
order by me_order, me_id ";
$result2 = sql_query($sql2);
for ($k=0; $row2=sql_fetch_array($result2); $k++) {
if($k == 0)
echo '<ul class="gnb_2dul">'.PHP_EOL;
?>
<li class="gnb_2dli"><a href="<?php echo $row2['me_link']; ?>" target="_<?php echo $row2['me_target']; ?>" class="gnb_2da"><span></span><?php echo $row2['me_name'] ?></a></li>
<?php
}
if($k > 0)
echo '</ul>'.PHP_EOL;
?>
</li>
<!--등록된 메뉴가 없을경우 -->
<?php
}
if ($i == 0) { ?>
<li id="gnb_empty">메뉴 준비 중입니다.<?php if ($is_admin) { ?> <br><a href="<?php echo G5_ADMIN_URL; ?>/menu_list.php">관리자모드 > 환경설정 > 메뉴설정</a>에서 설정하세요.<?php } ?></li>
<?php } ?>
<!--// 등록된 메뉴가 없을경우 -->
</ul>
</div>
!-->
답변을 작성하시기 전에 로그인 해주세요.