디자인만 아는 사람입니다.
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','원래 아이콘');
}
});
이런식으로 처리합니다. 약간 길어져도 토글 효과 나옵니다.
저도 이래저래 해보다가 비슷하게 붙여보았습니다.
필요하신 다른 분들을 위해서도 소스원본을 게시하도록 하겠습니다.
다시 한번 감사드립니다.
즐거운 연말연시 되시길 기원합니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 8130 | 9년 전 | 458 | ||
| 8129 |
|
9년 전 | 625 | |
| 8128 | 9년 전 | 492 | ||
| 8127 |
|
9년 전 | 554 | |
| 8126 | 9년 전 | 484 | ||
| 8125 | 9년 전 | 746 | ||
| 8124 |
|
9년 전 | 471 | |
| 8123 | 9년 전 | 459 | ||
| 8122 | 9년 전 | 397 | ||
| 8121 | 9년 전 | 506 | ||
| 8120 | 9년 전 | 440 | ||
| 8119 | 9년 전 | 515 | ||
| 8118 |
|
9년 전 | 602 | |
| 8117 |
|
9년 전 | 377 | |
| 8116 |
PASKRAN
|
9년 전 | 448 | |
| 8115 | 9년 전 | 437 | ||
| 8114 |
kiplayer
|
9년 전 | 575 | |
| 8113 | 9년 전 | 404 | ||
| 8112 |
|
9년 전 | 525 | |
| 8111 | 9년 전 | 373 | ||
| 8110 | 9년 전 | 419 | ||
| 8109 | 9년 전 | 332 | ||
| 8108 |
|
9년 전 | 516 | |
| 8107 |
|
9년 전 | 407 | |
| 8106 |
|
9년 전 | 408 | |
| 8105 | 9년 전 | 450 | ||
| 8104 |
|
9년 전 | 404 | |
| 8103 |
|
9년 전 | 406 | |
| 8102 |
|
9년 전 | 355 | |
| 8101 |
snshero
|
9년 전 | 747 | |
| 8100 | 9년 전 | 812 | ||
| 8099 | 9년 전 | 778 | ||
| 8098 | 9년 전 | 691 | ||
| 8097 | 9년 전 | 481 | ||
| 8096 | 9년 전 | 676 | ||
| 8095 | 9년 전 | 792 | ||
| 8094 | 9년 전 | 473 | ||
| 8093 | 9년 전 | 768 | ||
| 8092 | 9년 전 | 727 | ||
| 8091 | 9년 전 | 1124 | ||
| 8090 | 9년 전 | 732 | ||
| 8089 | 9년 전 | 937 | ||
| 8088 | 9년 전 | 613 | ||
| 8087 | 9년 전 | 718 | ||
| 8086 | 9년 전 | 492 | ||
| 8085 | 9년 전 | 454 | ||
| 8084 | 9년 전 | 594 | ||
| 8083 | 9년 전 | 563 | ||
| 8082 | 9년 전 | 730 | ||
| 8081 | 9년 전 | 442 | ||
| 8080 | 9년 전 | 531 | ||
| 8079 | 9년 전 | 480 | ||
| 8078 | 9년 전 | 417 | ||
| 8077 | 9년 전 | 493 | ||
| 8076 | 9년 전 | 379 | ||
| 8075 | 9년 전 | 395 | ||
| 8074 | 9년 전 | 360 | ||
| 8073 | 9년 전 | 413 | ||
| 8072 | 9년 전 | 400 | ||
| 8071 |
o1o111
|
9년 전 | 849 | |
| 8070 | 9년 전 | 368 | ||
| 8069 | 9년 전 | 300 | ||
| 8068 | 9년 전 | 563 | ||
| 8067 | 9년 전 | 372 | ||
| 8066 | 9년 전 | 397 | ||
| 8065 | 9년 전 | 350 | ||
| 8064 | 9년 전 | 326 | ||
| 8063 | 9년 전 | 290 | ||
| 8062 | 9년 전 | 274 | ||
| 8061 | 9년 전 | 326 | ||
| 8060 | 9년 전 | 346 | ||
| 8059 | 9년 전 | 280 | ||
| 8058 | 9년 전 | 221 | ||
| 8057 | 9년 전 | 342 | ||
| 8056 | 9년 전 | 274 | ||
| 8055 | 9년 전 | 305 | ||
| 8054 | 9년 전 | 326 | ||
| 8053 | 9년 전 | 365 | ||
| 8052 | 9년 전 | 256 | ||
| 8051 | 9년 전 | 298 | ||
| 8050 | 9년 전 | 362 | ||
| 8049 | 9년 전 | 285 | ||
| 8048 | 9년 전 | 401 | ||
| 8047 | 9년 전 | 333 | ||
| 8046 | 9년 전 | 262 | ||
| 8045 | 9년 전 | 232 | ||
| 8044 | 9년 전 | 293 | ||
| 8043 | 9년 전 | 239 | ||
| 8042 | 9년 전 | 266 | ||
| 8041 | 9년 전 | 299 | ||
| 8040 | 9년 전 | 235 | ||
| 8039 | 9년 전 | 292 | ||
| 8038 | 9년 전 | 250 | ||
| 8037 | 9년 전 | 362 | ||
| 8036 | 9년 전 | 448 | ||
| 8035 | 9년 전 | 400 | ||
| 8034 | 9년 전 | 361 | ||
| 8033 | 9년 전 | 315 | ||
| 8032 | 9년 전 | 369 | ||
| 8031 | 9년 전 | 301 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기