디자인만 아는 사람입니다.
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','원래 아이콘');
}
});
이런식으로 처리합니다. 약간 길어져도 토글 효과 나옵니다.
저도 이래저래 해보다가 비슷하게 붙여보았습니다.
필요하신 다른 분들을 위해서도 소스원본을 게시하도록 하겠습니다.
다시 한번 감사드립니다.
즐거운 연말연시 되시길 기원합니다.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5630 | 13년 전 | 1057 | ||
| 5629 | 13년 전 | 2702 | ||
| 5628 | 13년 전 | 1278 | ||
| 5627 | 13년 전 | 1653 | ||
| 5626 | 13년 전 | 1286 | ||
| 5625 | 13년 전 | 1945 | ||
| 5624 | 13년 전 | 1353 | ||
| 5623 | 13년 전 | 943 | ||
| 5622 | 13년 전 | 417 | ||
| 5621 | 13년 전 | 13308 | ||
| 5620 | 13년 전 | 1191 | ||
| 5619 | 13년 전 | 3332 | ||
| 5618 | 13년 전 | 960 | ||
| 5617 | 13년 전 | 419 | ||
| 5616 | 13년 전 | 596 | ||
| 5615 |
Preware
|
13년 전 | 414 | |
| 5614 | 13년 전 | 548 | ||
| 5613 |
AMDbest
|
13년 전 | 4336 | |
| 5612 |
AMDbest
|
13년 전 | 6161 | |
| 5611 | 13년 전 | 870 | ||
| 5610 |
AMDbest
|
13년 전 | 4660 | |
| 5609 | 13년 전 | 960 | ||
| 5608 |
|
13년 전 | 474 | |
| 5607 | 13년 전 | 643 | ||
| 5606 | 13년 전 | 462 | ||
| 5605 | 13년 전 | 356 | ||
| 5604 | 13년 전 | 598 | ||
| 5603 |
갑수엔터테인먼트
|
13년 전 | 759 | |
| 5602 | 13년 전 | 411 | ||
| 5601 | 13년 전 | 494 | ||
| 5600 | 13년 전 | 923 | ||
| 5599 | 13년 전 | 7463 | ||
| 5598 |
PHPㅡASP프로그래머
|
13년 전 | 2698 | |
| 5597 | 13년 전 | 402 | ||
| 5596 |
hoinV
|
13년 전 | 991 | |
| 5595 | 13년 전 | 916 | ||
| 5594 | 13년 전 | 1056 | ||
| 5593 | 13년 전 | 4924 | ||
| 5592 |
|
13년 전 | 366 | |
| 5591 | 13년 전 | 877 | ||
| 5590 |
PHPㅡASP프로그래머
|
13년 전 | 2305 | |
| 5589 | 13년 전 | 1937 | ||
| 5588 |
바다로가자
|
13년 전 | 1628 | |
| 5587 |
PHPㅡASP프로그래머
|
13년 전 | 1820 | |
| 5586 | 13년 전 | 2736 | ||
| 5585 | 13년 전 | 382 | ||
| 5584 | 13년 전 | 1866 | ||
| 5583 | 13년 전 | 1290 | ||
| 5582 |
바다로가자
|
13년 전 | 3074 | |
| 5581 |
|
13년 전 | 3096 | |
| 5580 | 13년 전 | 904 | ||
| 5579 |
하하369
|
13년 전 | 3957 | |
| 5578 | 13년 전 | 1037 | ||
| 5577 | 13년 전 | 1224 | ||
| 5576 | 13년 전 | 1636 | ||
| 5575 |
가위바위보
|
13년 전 | 1588 | |
| 5574 |
danielle
|
13년 전 | 686 | |
| 5573 |
|
13년 전 | 851 | |
| 5572 | 13년 전 | 2766 | ||
| 5571 | 13년 전 | 823 | ||
| 5570 | 13년 전 | 1411 | ||
| 5569 |
|
13년 전 | 2121 | |
| 5568 | 13년 전 | 1949 | ||
| 5567 | 13년 전 | 673 | ||
| 5566 |
|
13년 전 | 1303 | |
| 5565 | 13년 전 | 3664 | ||
| 5564 | 13년 전 | 916 | ||
| 5563 | 13년 전 | 1365 | ||
| 5562 | 13년 전 | 863 | ||
| 5561 | 13년 전 | 1036 | ||
| 5560 |
PHPㅡASP프로그래머
|
13년 전 | 1525 | |
| 5559 | 13년 전 | 625 | ||
| 5558 |
there007
|
13년 전 | 1543 | |
| 5557 | 13년 전 | 1174 | ||
| 5556 |
후라보노보노
|
13년 전 | 738 | |
| 5555 | 13년 전 | 9125 | ||
| 5554 | 13년 전 | 818 | ||
| 5553 |
가을이군요
|
13년 전 | 711 | |
| 5552 |
|
13년 전 | 787 | |
| 5551 | 13년 전 | 1508 | ||
| 5550 |
후라보노보노
|
13년 전 | 909 | |
| 5549 |
|
13년 전 | 1005 | |
| 5548 | 13년 전 | 674 | ||
| 5547 | 13년 전 | 524 | ||
| 5546 | 13년 전 | 4605 | ||
| 5545 | 13년 전 | 903 | ||
| 5544 | 13년 전 | 1019 | ||
| 5543 | 13년 전 | 756 | ||
| 5542 | 13년 전 | 6627 | ||
| 5541 | 13년 전 | 804 | ||
| 5540 | 13년 전 | 1135 | ||
| 5539 | 13년 전 | 1113 | ||
| 5538 | 13년 전 | 2825 | ||
| 5537 | 13년 전 | 803 | ||
| 5536 | 13년 전 | 2693 | ||
| 5535 |
|
13년 전 | 1185 | |
| 5534 | 13년 전 | 1755 | ||
| 5533 |
꿈꾸는인생
|
13년 전 | 1323 | |
| 5532 | 13년 전 | 1487 | ||
| 5531 | 13년 전 | 1701 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기