디자인만 아는 사람입니다.
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','원래 아이콘');
}
});
이런식으로 처리합니다. 약간 길어져도 토글 효과 나옵니다.
저도 이래저래 해보다가 비슷하게 붙여보았습니다.
필요하신 다른 분들을 위해서도 소스원본을 게시하도록 하겠습니다.
다시 한번 감사드립니다.
즐거운 연말연시 되시길 기원합니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5930 | 12년 전 | 4633 | ||
| 5929 | 12년 전 | 7829 | ||
| 5928 | 12년 전 | 777 | ||
| 5927 | 12년 전 | 1406 | ||
| 5926 | 12년 전 | 1825 | ||
| 5925 |
김준수사랑
|
12년 전 | 1236 | |
| 5924 |
|
12년 전 | 2741 | |
| 5923 | 12년 전 | 945 | ||
| 5922 | 12년 전 | 1153 | ||
| 5921 | 12년 전 | 641 | ||
| 5920 | 12년 전 | 1177 | ||
| 5919 |
|
12년 전 | 1364 | |
| 5918 | 12년 전 | 12580 | ||
| 5917 |
프로프리랜서
|
12년 전 | 1086 | |
| 5916 |
프로프리랜서
|
12년 전 | 4610 | |
| 5915 |
프로프리랜서
|
12년 전 | 1586 | |
| 5914 |
프로프리랜서
|
12년 전 | 641 | |
| 5913 |
프로프리랜서
|
12년 전 | 926 | |
| 5912 |
프로프리랜서
|
12년 전 | 3741 | |
| 5911 |
프로프리랜서
|
12년 전 | 915 | |
| 5910 |
|
12년 전 | 4571 | |
| 5909 |
수야3019
|
12년 전 | 653 | |
| 5908 | 12년 전 | 824 | ||
| 5907 | 12년 전 | 1219 | ||
| 5906 | 12년 전 | 8744 | ||
| 5905 |
프로프리랜서
|
12년 전 | 1467 | |
| 5904 | 12년 전 | 2491 | ||
| 5903 | 12년 전 | 1646 | ||
| 5902 | 12년 전 | 1919 | ||
| 5901 | 12년 전 | 2002 | ||
| 5900 |
프로프리랜서
|
12년 전 | 1076 | |
| 5899 |
프로프리랜서
|
12년 전 | 1273 | |
| 5898 | 12년 전 | 17670 | ||
| 5897 | 12년 전 | 2325 | ||
| 5896 | 12년 전 | 4350 | ||
| 5895 | 12년 전 | 1679 | ||
| 5894 | 12년 전 | 2092 | ||
| 5893 |
프로프리랜서
|
12년 전 | 2149 | |
| 5892 | 12년 전 | 16034 | ||
| 5891 |
bitmaster
|
12년 전 | 1069 | |
| 5890 |
프로프리랜서
|
12년 전 | 927 | |
| 5889 |
|
12년 전 | 713 | |
| 5888 | 12년 전 | 1604 | ||
| 5887 |
|
12년 전 | 3189 | |
| 5886 | 12년 전 | 3444 | ||
| 5885 | 12년 전 | 2107 | ||
| 5884 | 12년 전 | 5646 | ||
| 5883 | 12년 전 | 2805 | ||
| 5882 | 12년 전 | 6016 | ||
| 5881 | 12년 전 | 1627 | ||
| 5880 | 12년 전 | 20707 | ||
| 5879 | 12년 전 | 895 | ||
| 5878 |
나의라임토마토
|
12년 전 | 1391 | |
| 5877 | 12년 전 | 16747 | ||
| 5876 |
maniAc
|
12년 전 | 2784 | |
| 5875 | 13년 전 | 1023 | ||
| 5874 | 13년 전 | 3727 | ||
| 5873 |
lainfox
|
13년 전 | 1179 | |
| 5872 | 13년 전 | 1340 | ||
| 5871 | 13년 전 | 786 | ||
| 5870 | 13년 전 | 2525 | ||
| 5869 |
AMDbest
|
13년 전 | 1506 | |
| 5868 |
한번잘해보자
|
13년 전 | 651 | |
| 5867 |
|
13년 전 | 898 | |
| 5866 | 13년 전 | 7468 | ||
| 5865 | 13년 전 | 2397 | ||
| 5864 | 13년 전 | 931 | ||
| 5863 | 13년 전 | 1305 | ||
| 5862 | 13년 전 | 2873 | ||
| 5861 | 13년 전 | 1025 | ||
| 5860 | 13년 전 | 19327 | ||
| 5859 | 13년 전 | 2931 | ||
| 5858 | 13년 전 | 2648 | ||
| 5857 | 13년 전 | 4815 | ||
| 5856 |
|
13년 전 | 1941 | |
| 5855 | 13년 전 | 815 | ||
| 5854 | 13년 전 | 1003 | ||
| 5853 | 13년 전 | 16097 | ||
| 5852 | 13년 전 | 819 | ||
| 5851 | 13년 전 | 2215 | ||
| 5850 | 13년 전 | 1771 | ||
| 5849 |
AMDbest
|
13년 전 | 1297 | |
| 5848 |
|
13년 전 | 1156 | |
| 5847 |
SeanLee
|
13년 전 | 1295 | |
| 5846 | 13년 전 | 23457 | ||
| 5845 | 13년 전 | 2634 | ||
| 5844 | 13년 전 | 28786 | ||
| 5843 |
|
13년 전 | 2195 | |
| 5842 | 13년 전 | 22505 | ||
| 5841 | 13년 전 | 5736 | ||
| 5840 |
Quincy
|
13년 전 | 927 | |
| 5839 | 13년 전 | 953 | ||
| 5838 | 13년 전 | 2806 | ||
| 5837 | 13년 전 | 1083 | ||
| 5836 | 13년 전 | 2309 | ||
| 5835 | 13년 전 | 1512 | ||
| 5834 | 13년 전 | 1496 | ||
| 5833 | 13년 전 | 6667 | ||
| 5832 | 13년 전 | 5206 | ||
| 5831 | 13년 전 | 1065 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기