디자인만 아는 사람입니다.
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','원래 아이콘');
}
});
이런식으로 처리합니다. 약간 길어져도 토글 효과 나옵니다.
저도 이래저래 해보다가 비슷하게 붙여보았습니다.
필요하신 다른 분들을 위해서도 소스원본을 게시하도록 하겠습니다.
다시 한번 감사드립니다.
즐거운 연말연시 되시길 기원합니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5730 | 13년 전 | 768 | ||
| 5729 | 13년 전 | 3586 | ||
| 5728 | 13년 전 | 1157 | ||
| 5727 |
freejazzme
|
13년 전 | 1112 | |
| 5726 | 13년 전 | 1448 | ||
| 5725 |
itlang
|
13년 전 | 430 | |
| 5724 | 13년 전 | 508 | ||
| 5723 |
crocojea
|
13년 전 | 1489 | |
| 5722 | 13년 전 | 1983 | ||
| 5721 | 13년 전 | 712 | ||
| 5720 |
쿠우우우우
|
13년 전 | 471 | |
| 5719 | 13년 전 | 613 | ||
| 5718 |
|
13년 전 | 591 | |
| 5717 | 13년 전 | 1446 | ||
| 5716 |
|
13년 전 | 1035 | |
| 5715 | 13년 전 | 468 | ||
| 5714 | 13년 전 | 472 | ||
| 5713 | 13년 전 | 537 | ||
| 5712 |
|
13년 전 | 775 | |
| 5711 | 13년 전 | 697 | ||
| 5710 |
minini
|
13년 전 | 489 | |
| 5709 |
|
13년 전 | 1331 | |
| 5708 | 13년 전 | 683 | ||
| 5707 | 13년 전 | 5859 | ||
| 5706 |
오니기리죠
|
13년 전 | 1023 | |
| 5705 |
HSEngine
|
13년 전 | 657 | |
| 5704 |
Giggle
|
13년 전 | 1697 | |
| 5703 | 13년 전 | 505 | ||
| 5702 |
AMDbest
|
13년 전 | 1422 | |
| 5701 |
|
13년 전 | 2890 | |
| 5700 | 13년 전 | 501 | ||
| 5699 |
미션임파썩을
|
13년 전 | 540 | |
| 5698 | 13년 전 | 625 | ||
| 5697 | 13년 전 | 533 | ||
| 5696 | 13년 전 | 442 | ||
| 5695 |
|
13년 전 | 699 | |
| 5694 | 13년 전 | 439 | ||
| 5693 | 13년 전 | 977 | ||
| 5692 | 13년 전 | 949 | ||
| 5691 |
쉽다zzz
|
13년 전 | 718 | |
| 5690 | 13년 전 | 474 | ||
| 5689 | 13년 전 | 634 | ||
| 5688 | 13년 전 | 1413 | ||
| 5687 | 13년 전 | 467 | ||
| 5686 | 13년 전 | 2452 | ||
| 5685 |
AMDbest
|
13년 전 | 2158 | |
| 5684 | 13년 전 | 2038 | ||
| 5683 | 13년 전 | 1354 | ||
| 5682 |
AMDbest
|
13년 전 | 676 | |
| 5681 | 13년 전 | 3802 | ||
| 5680 |
|
13년 전 | 1683 | |
| 5679 | 13년 전 | 2088 | ||
| 5678 |
|
13년 전 | 521 | |
| 5677 |
mobiler
|
13년 전 | 465 | |
| 5676 | 13년 전 | 1603 | ||
| 5675 | 13년 전 | 588 | ||
| 5674 |
PHPㅡASP프로그래머
|
13년 전 | 1816 | |
| 5673 |
PHPㅡASP프로그래머
|
13년 전 | 1491 | |
| 5672 |
PHPㅡASP프로그래머
|
13년 전 | 1280 | |
| 5671 |
PHPㅡASP프로그래머
|
13년 전 | 1212 | |
| 5670 |
PHPㅡASP프로그래머
|
13년 전 | 4608 | |
| 5669 | 13년 전 | 3050 | ||
| 5668 | 13년 전 | 1412 | ||
| 5667 | 13년 전 | 492 | ||
| 5666 | 13년 전 | 1142 | ||
| 5665 |
Darby
|
13년 전 | 1604 | |
| 5664 | 13년 전 | 1338 | ||
| 5663 | 13년 전 | 1122 | ||
| 5662 | 13년 전 | 786 | ||
| 5661 | 13년 전 | 449 | ||
| 5660 | 13년 전 | 841 | ||
| 5659 | 13년 전 | 710 | ||
| 5658 | 13년 전 | 531 | ||
| 5657 | 13년 전 | 536 | ||
| 5656 | 13년 전 | 990 | ||
| 5655 | 13년 전 | 437 | ||
| 5654 | 13년 전 | 390 | ||
| 5653 |
졸린다젠장
|
13년 전 | 477 | |
| 5652 |
|
13년 전 | 396 | |
| 5651 | 13년 전 | 1028 | ||
| 5650 | 13년 전 | 719 | ||
| 5649 | 13년 전 | 2232 | ||
| 5648 | 13년 전 | 479 | ||
| 5647 | 13년 전 | 757 | ||
| 5646 | 13년 전 | 1493 | ||
| 5645 | 13년 전 | 679 | ||
| 5644 | 13년 전 | 614 | ||
| 5643 |
|
13년 전 | 573 | |
| 5642 |
쿠마하우스
|
13년 전 | 685 | |
| 5641 |
goaway
|
13년 전 | 1084 | |
| 5640 |
쿠마하우스
|
13년 전 | 647 | |
| 5639 | 13년 전 | 674 | ||
| 5638 |
쿠마하우스
|
13년 전 | 989 | |
| 5637 | 13년 전 | 807 | ||
| 5636 | 13년 전 | 1414 | ||
| 5635 |
goaway
|
13년 전 | 910 | |
| 5634 |
lllolll
|
13년 전 | 415 | |
| 5633 | 13년 전 | 962 | ||
| 5632 | 13년 전 | 4272 | ||
| 5631 | 13년 전 | 567 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기