디자인만 아는 사람입니다.
4일째 고생하고 있습니다.
저의 수고를 다른 분에게 전가하는 것같아 죄송한 마음이 크지만
문외한으로서 도움이 꼭 필요하여 질문드립니다.
*내용 : 아래에서 위로 슬라이딩되는 메뉴
위의 그림 1, 2 와 같이 1에서 누르면 2처럼 펼쳐졌다가 2버튼을 다시 누르면 1번 처럼 접히는 형태입니다.
슬라이드 업 소스는 거의 없어 한참을 헤메다가 운좋게 소스를 구했는데 CSS? 부분을 수정해도//특히, 버튼의 위치
를 가운데로// 적용이 잘 되지않아 많이 헤메고 있습니다.
소스는 아래와 같습니다.
--------------------------------------------------------------------------------------
<!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 charset="utf-8" />
<title>toggleSlide Up</title>
<style>
html, body {
height:100%;
}
body {
padding:0;
margin:0;
background:#ffffff;
font-family:돋움, DOTUM,Arial, Helvetica, sans-serif;
font-size:14px
}
#container {
width:1005px;
height:100%;
margin:0 auto;
position:relative;
}
#about_popup {
width:1005px;
height:320px;
padding:20px;
background:#fff;
position:absolute;
left:0;
bottom:0;
display:none;
-moz-border-radius-topleft:0px;
-moz-border-radius-topright:0px;
-webkit-border-top-left-radius:0px;
-webkit-border-top-right-radius:0px;
}
#about_popup h1 {
color:#fff;
margin:0;
font-size:100px;
}
#about_popup p {
margin:0;
color:#fff;
}
#bottom_bar {
width:130px;
height:40px;
background:#cc0000;
background:-moz-linear-gradient(#FE1313,#cc0000);
background:-webkit-gradient(linear, left top, left bottom, from(#FE1313), to(#cc0000));
box-shadow:none;
position:absolute;
bottom:0;
}
#bottom_bar ul {
list-style:none;
width:960px;
margin:0 auto;
}
#bottom_bar ul li {
float:left;
line-height:40px;
}
#bottom_bar ul li a {
color:#fff;
text-decoration:none;
margin-right:20px;
}
/*--- Page styles ---*/
#back {
position:bottom:0;
top:10px;
left:center;
background:#ccc;
width:150px;
height:25px;
-moz-border-radius:0px;
-webkit-border-radius:0px;
border-radius:0px;
text-align:center;
padding-top:0px;
opacity:0.5;
}
#back:hover {
opacity:1;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script>
$(function () {
$('#bottom_menu a').click(function (e) {
$('#about_popup').slideToggle();
});
});
</script>
</head>
<body>
<div id="container">
<div id="about_popup">
<h1>About</h1>
<p>
<img src="map.jpg" width="1005" height="294">
</p>
</div>
</div>
<table>
<tr>
<td height=100>
<div id="bottom_bar">
<ul id="bottom_menu">
<li><a href="#about"><img src="btn.png"</a></il>
</ul>
</div>
</td>
</tr>
<tr>
<td height=100></td>
</tr>
</table>
</body>
</html>
--------------------------------------------------------------------
읽어주셔서 감사드리고 고수분들의 좋은 답변 기다리겠습니다. 물론, 저도 계속 연구하고 있겠습니다.
감사합니다.
댓글 2개
<input type="hidden" name="tmp_slider_val" value="" />
이런식으로 빈값을 만들곳을 하나 만들어서
$('#bottom_menu a').click(function (e) {
var status = $('[name=tmp_slider_val]').val();
if(status == 1)
{
$('#about_popup').slideUp();
$('[name=tmp_slider_val]').val(0);
$(this).attr('src','바뀌는 아이콘');
}
else
{
$('#about_popup').slideDown();
$('[name=tmp_slider_val]').val(1);
$(this).attr('src','원래 아이콘');
}
});
이런식으로 처리합니다. 약간 길어져도 토글 효과 나옵니다.
저도 이래저래 해보다가 비슷하게 붙여보았습니다.
필요하신 다른 분들을 위해서도 소스원본을 게시하도록 하겠습니다.
다시 한번 감사드립니다.
즐거운 연말연시 되시길 기원합니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8230 | 9년 전 | 100 | ||
| 8229 | 9년 전 | 98 | ||
| 8228 |
커네드커네드
|
9년 전 | 145 | |
| 8227 | 9년 전 | 174 | ||
| 8226 | 9년 전 | 194 | ||
| 8225 | 9년 전 | 181 | ||
| 8224 | 9년 전 | 168 | ||
| 8223 | 9년 전 | 147 | ||
| 8222 |
|
9년 전 | 223 | |
| 8221 | 9년 전 | 129 | ||
| 8220 | 9년 전 | 156 | ||
| 8219 | 9년 전 | 127 | ||
| 8218 | 9년 전 | 174 | ||
| 8217 |
star3840
|
9년 전 | 142 | |
| 8216 | 9년 전 | 201 | ||
| 8215 | 9년 전 | 155 | ||
| 8214 | 9년 전 | 255 | ||
| 8213 | 9년 전 | 203 | ||
| 8212 | 9년 전 | 120 | ||
| 8211 | 9년 전 | 292 | ||
| 8210 | 9년 전 | 295 | ||
| 8209 | 9년 전 | 368 | ||
| 8208 | 9년 전 | 262 | ||
| 8207 | 9년 전 | 262 | ||
| 8206 |
|
9년 전 | 220 | |
| 8205 | 9년 전 | 209 | ||
| 8204 | 9년 전 | 169 | ||
| 8203 | 9년 전 | 259 | ||
| 8202 | 9년 전 | 173 | ||
| 8201 | 9년 전 | 215 | ||
| 8200 | 9년 전 | 206 | ||
| 8199 | 9년 전 | 244 | ||
| 8198 | 9년 전 | 207 | ||
| 8197 | 9년 전 | 194 | ||
| 8196 | 9년 전 | 583 | ||
| 8195 | 9년 전 | 193 | ||
| 8194 | 9년 전 | 318 | ||
| 8193 | 9년 전 | 204 | ||
| 8192 | 9년 전 | 229 | ||
| 8191 | 9년 전 | 181 | ||
| 8190 | 9년 전 | 182 | ||
| 8189 | 9년 전 | 234 | ||
| 8188 | 9년 전 | 168 | ||
| 8187 | 9년 전 | 181 | ||
| 8186 | 9년 전 | 176 | ||
| 8185 | 9년 전 | 352 | ||
| 8184 | 9년 전 | 138 | ||
| 8183 | 9년 전 | 350 | ||
| 8182 | 9년 전 | 208 | ||
| 8181 | 9년 전 | 170 | ||
| 8180 | 9년 전 | 738 | ||
| 8179 | 9년 전 | 517 | ||
| 8178 | 9년 전 | 352 | ||
| 8177 |
kiplayer
|
9년 전 | 362 | |
| 8176 | 9년 전 | 402 | ||
| 8175 | 9년 전 | 266 | ||
| 8174 | 9년 전 | 279 | ||
| 8173 | 9년 전 | 372 | ||
| 8172 | 9년 전 | 237 | ||
| 8171 | 9년 전 | 215 | ||
| 8170 | 9년 전 | 329 | ||
| 8169 |
커네드커네드
|
9년 전 | 289 | |
| 8168 | 9년 전 | 356 | ||
| 8167 | 9년 전 | 353 | ||
| 8166 | 9년 전 | 269 | ||
| 8165 | 9년 전 | 207 | ||
| 8164 | 9년 전 | 340 | ||
| 8163 | 9년 전 | 327 | ||
| 8162 | 9년 전 | 340 | ||
| 8161 | 9년 전 | 335 | ||
| 8160 |
|
9년 전 | 533 | |
| 8159 | 9년 전 | 470 | ||
| 8158 | 9년 전 | 285 | ||
| 8157 | 9년 전 | 413 | ||
| 8156 | 9년 전 | 296 | ||
| 8155 | 9년 전 | 282 | ||
| 8154 |
00년생용띠
|
9년 전 | 630 | |
| 8153 | 9년 전 | 265 | ||
| 8152 |
|
9년 전 | 442 | |
| 8151 | 9년 전 | 451 | ||
| 8150 | 9년 전 | 545 | ||
| 8149 |
Jangfolk
|
9년 전 | 384 | |
| 8148 | 9년 전 | 215 | ||
| 8147 | 9년 전 | 415 | ||
| 8146 | 9년 전 | 483 | ||
| 8145 | 9년 전 | 440 | ||
| 8144 | 9년 전 | 400 | ||
| 8143 | 9년 전 | 230 | ||
| 8142 | 9년 전 | 469 | ||
| 8141 | 9년 전 | 415 | ||
| 8140 | 9년 전 | 962 | ||
| 8139 | 9년 전 | 313 | ||
| 8138 |
전갈자리남자
|
9년 전 | 420 | |
| 8137 | 9년 전 | 441 | ||
| 8136 | 9년 전 | 788 | ||
| 8135 |
|
9년 전 | 821 | |
| 8134 |
PlayPixel
|
9년 전 | 555 | |
| 8133 |
|
9년 전 | 473 | |
| 8132 | 9년 전 | 493 | ||
| 8131 | 9년 전 | 853 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기