디자인만 아는 사람입니다.
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','원래 아이콘');
}
});
이런식으로 처리합니다. 약간 길어져도 토글 효과 나옵니다.
저도 이래저래 해보다가 비슷하게 붙여보았습니다.
필요하신 다른 분들을 위해서도 소스원본을 게시하도록 하겠습니다.
다시 한번 감사드립니다.
즐거운 연말연시 되시길 기원합니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7830 | 9년 전 | 410 | ||
| 7829 |
|
9년 전 | 593 | |
| 7828 | 9년 전 | 524 | ||
| 7827 | 9년 전 | 413 | ||
| 7826 | 9년 전 | 421 | ||
| 7825 | 10년 전 | 461 | ||
| 7824 | 10년 전 | 437 | ||
| 7823 | 10년 전 | 359 | ||
| 7822 | 10년 전 | 343 | ||
| 7821 | 10년 전 | 298 | ||
| 7820 | 10년 전 | 340 | ||
| 7819 |
|
10년 전 | 743 | |
| 7818 | 10년 전 | 376 | ||
| 7817 | 10년 전 | 497 | ||
| 7816 | 10년 전 | 394 | ||
| 7815 | 10년 전 | 597 | ||
| 7814 | 10년 전 | 416 | ||
| 7813 | 10년 전 | 363 | ||
| 7812 | 10년 전 | 383 | ||
| 7811 | 10년 전 | 383 | ||
| 7810 | 10년 전 | 552 | ||
| 7809 | 10년 전 | 476 | ||
| 7808 | 10년 전 | 369 | ||
| 7807 | 10년 전 | 394 | ||
| 7806 |
프로그래머7
|
10년 전 | 1326 | |
| 7805 | 10년 전 | 1265 | ||
| 7804 |
zahir1312
|
10년 전 | 766 | |
| 7803 |
|
10년 전 | 1361 | |
| 7802 | 10년 전 | 450 | ||
| 7801 | 10년 전 | 854 | ||
| 7800 | 10년 전 | 1077 | ||
| 7799 | 10년 전 | 539 | ||
| 7798 | 10년 전 | 493 | ||
| 7797 | 10년 전 | 493 | ||
| 7796 | 10년 전 | 336 | ||
| 7795 | 10년 전 | 492 | ||
| 7794 | 10년 전 | 532 | ||
| 7793 | 10년 전 | 1042 | ||
| 7792 | 10년 전 | 453 | ||
| 7791 | 10년 전 | 535 | ||
| 7790 | 10년 전 | 494 | ||
| 7789 |
fbastore
|
10년 전 | 1436 | |
| 7788 | 10년 전 | 529 | ||
| 7787 | 10년 전 | 389 | ||
| 7786 | 10년 전 | 563 | ||
| 7785 | 10년 전 | 567 | ||
| 7784 | 10년 전 | 628 | ||
| 7783 | 10년 전 | 430 | ||
| 7782 | 10년 전 | 480 | ||
| 7781 | 10년 전 | 890 | ||
| 7780 | 10년 전 | 804 | ||
| 7779 | 10년 전 | 768 | ||
| 7778 | 10년 전 | 355 | ||
| 7777 | 10년 전 | 441 | ||
| 7776 | 10년 전 | 446 | ||
| 7775 | 10년 전 | 389 | ||
| 7774 | 10년 전 | 624 | ||
| 7773 | 10년 전 | 371 | ||
| 7772 | 10년 전 | 719 | ||
| 7771 | 10년 전 | 366 | ||
| 7770 | 10년 전 | 636 | ||
| 7769 | 10년 전 | 364 | ||
| 7768 | 10년 전 | 590 | ||
| 7767 | 10년 전 | 1158 | ||
| 7766 | 10년 전 | 485 | ||
| 7765 | 10년 전 | 508 | ||
| 7764 |
잘살아보자
|
10년 전 | 368 | |
| 7763 |
|
10년 전 | 1436 | |
| 7762 |
Tosea
|
10년 전 | 1047 | |
| 7761 | 10년 전 | 634 | ||
| 7760 |
잘살아보자
|
10년 전 | 666 | |
| 7759 |
잘살아보자
|
10년 전 | 489 | |
| 7758 |
잘살아보자
|
10년 전 | 579 | |
| 7757 | 10년 전 | 1229 | ||
| 7756 |
ITBANK
|
10년 전 | 1246 | |
| 7755 | 10년 전 | 1921 | ||
| 7754 | 10년 전 | 1043 | ||
| 7753 | 10년 전 | 872 | ||
| 7752 | 10년 전 | 1381 | ||
| 7751 |
잘살아보자
|
10년 전 | 513 | |
| 7750 |
잘살아보자
|
10년 전 | 468 | |
| 7749 |
잘살아보자
|
10년 전 | 469 | |
| 7748 |
잘살아보자
|
10년 전 | 466 | |
| 7747 |
잘살아보자
|
10년 전 | 562 | |
| 7746 |
잘살아보자
|
10년 전 | 671 | |
| 7745 |
잘살아보자
|
10년 전 | 902 | |
| 7744 |
잘살아보자
|
10년 전 | 407 | |
| 7743 | 10년 전 | 938 | ||
| 7742 |
starbros
|
10년 전 | 826 | |
| 7741 |
잘살아보자
|
10년 전 | 660 | |
| 7740 |
잘살아보자
|
10년 전 | 515 | |
| 7739 |
잘살아보자
|
10년 전 | 455 | |
| 7738 |
잘살아보자
|
10년 전 | 520 | |
| 7737 |
잘살아보자
|
10년 전 | 484 | |
| 7736 |
잘살아보자
|
10년 전 | 506 | |
| 7735 |
잘살아보자
|
10년 전 | 834 | |
| 7734 |
잘살아보자
|
10년 전 | 422 | |
| 7733 |
잘살아보자
|
10년 전 | 532 | |
| 7732 |
잘살아보자
|
10년 전 | 686 | |
| 7731 |
잘살아보자
|
10년 전 | 607 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기