디자인만 아는 사람입니다.
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','원래 아이콘');
}
});
이런식으로 처리합니다. 약간 길어져도 토글 효과 나옵니다.
저도 이래저래 해보다가 비슷하게 붙여보았습니다.
필요하신 다른 분들을 위해서도 소스원본을 게시하도록 하겠습니다.
다시 한번 감사드립니다.
즐거운 연말연시 되시길 기원합니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5830 | 13년 전 | 1186 | ||
| 5829 | 13년 전 | 5054 | ||
| 5828 | 13년 전 | 6436 | ||
| 5827 | 13년 전 | 1207 | ||
| 5826 |
|
13년 전 | 530 | |
| 5825 | 13년 전 | 898 | ||
| 5824 |
|
13년 전 | 1882 | |
| 5823 | 13년 전 | 5617 | ||
| 5822 |
jfascas
|
13년 전 | 1043 | |
| 5821 | 13년 전 | 1700 | ||
| 5820 | 13년 전 | 1313 | ||
| 5819 |
itlang
|
13년 전 | 508 | |
| 5818 | 13년 전 | 1308 | ||
| 5817 | 13년 전 | 780 | ||
| 5816 | 13년 전 | 625 | ||
| 5815 | 13년 전 | 6134 | ||
| 5814 | 13년 전 | 860 | ||
| 5813 |
악마의유혹
|
13년 전 | 463 | |
| 5812 | 13년 전 | 2806 | ||
| 5811 | 13년 전 | 1177 | ||
| 5810 | 13년 전 | 3534 | ||
| 5809 | 13년 전 | 1356 | ||
| 5808 | 13년 전 | 1064 | ||
| 5807 | 13년 전 | 573 | ||
| 5806 | 13년 전 | 560 | ||
| 5805 |
angrysol
|
13년 전 | 816 | |
| 5804 | 13년 전 | 1006 | ||
| 5803 | 13년 전 | 1734 | ||
| 5802 |
angrysol
|
13년 전 | 1059 | |
| 5801 |
후라보노보노
|
13년 전 | 2147 | |
| 5800 | 13년 전 | 1107 | ||
| 5799 |
|
13년 전 | 4191 | |
| 5798 |
|
13년 전 | 3361 | |
| 5797 |
|
13년 전 | 4936 | |
| 5796 | 13년 전 | 7542 | ||
| 5795 | 13년 전 | 2778 | ||
| 5794 | 13년 전 | 2230 | ||
| 5793 |
|
13년 전 | 662 | |
| 5792 | 13년 전 | 2974 | ||
| 5791 | 13년 전 | 845 | ||
| 5790 | 13년 전 | 4329 | ||
| 5789 |
|
13년 전 | 2478 | |
| 5788 |
|
13년 전 | 1853 | |
| 5787 |
오지랖선생
|
13년 전 | 1620 | |
| 5786 | 13년 전 | 5924 | ||
| 5785 | 13년 전 | 1752 | ||
| 5784 |
|
13년 전 | 1450 | |
| 5783 | 13년 전 | 1308 | ||
| 5782 |
|
13년 전 | 2819 | |
| 5781 | 13년 전 | 2853 | ||
| 5780 | 13년 전 | 1155 | ||
| 5779 |
|
13년 전 | 1358 | |
| 5778 |
오리진소프트
|
13년 전 | 4608 | |
| 5777 | 13년 전 | 678 | ||
| 5776 | 13년 전 | 1148 | ||
| 5775 | 13년 전 | 1462 | ||
| 5774 | 13년 전 | 1885 | ||
| 5773 |
|
13년 전 | 1914 | |
| 5772 | 13년 전 | 1677 | ||
| 5771 | 13년 전 | 4787 | ||
| 5770 | 13년 전 | 1127 | ||
| 5769 | 13년 전 | 6107 | ||
| 5768 |
|
13년 전 | 1578 | |
| 5767 | 13년 전 | 1687 | ||
| 5766 |
프로프리랜서
|
13년 전 | 1384 | |
| 5765 |
|
13년 전 | 1036 | |
| 5764 | 13년 전 | 1760 | ||
| 5763 |
|
13년 전 | 783 | |
| 5762 |
|
13년 전 | 2287 | |
| 5761 | 13년 전 | 618 | ||
| 5760 | 13년 전 | 622 | ||
| 5759 | 13년 전 | 3269 | ||
| 5758 | 13년 전 | 1075 | ||
| 5757 |
|
13년 전 | 740 | |
| 5756 | 13년 전 | 566 | ||
| 5755 | 13년 전 | 1057 | ||
| 5754 |
|
13년 전 | 2224 | |
| 5753 | 13년 전 | 674 | ||
| 5752 | 13년 전 | 1544 | ||
| 5751 | 13년 전 | 766 | ||
| 5750 | 13년 전 | 752 | ||
| 5749 | 13년 전 | 2569 | ||
| 5748 | 13년 전 | 1003 | ||
| 5747 | 13년 전 | 1217 | ||
| 5746 |
|
13년 전 | 647 | |
| 5745 | 13년 전 | 1658 | ||
| 5744 | 13년 전 | 668 | ||
| 5743 | 13년 전 | 830 | ||
| 5742 |
프로프리랜서
|
13년 전 | 575 | |
| 5741 | 13년 전 | 641 | ||
| 5740 | 13년 전 | 622 | ||
| 5739 | 13년 전 | 727 | ||
| 5738 | 13년 전 | 1924 | ||
| 5737 | 13년 전 | 983 | ||
| 5736 | 13년 전 | 1091 | ||
| 5735 | 13년 전 | 1992 | ||
| 5734 | 13년 전 | 1137 | ||
| 5733 | 13년 전 | 2777 | ||
| 5732 |
JOYCOM
|
13년 전 | 639 | |
| 5731 | 13년 전 | 3305 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기