※ 예전에 한번 같은걸 올렸던 적이 있습니다.
홈페이지 리뉴얼하면서 작업했던 것들 싹 다 삭제했는데..
최근 통계를 보니깐 그 때 올렸던 링크 타고 오시는 분이 엄청 많으시더군요-_-;;
그래서 다시 올려 드립니다.^^;;
jQuery를 처음 배우기 시작했을 때 만든 코드라서, 조금 지저분합니다.
수정해서 쓰시는 것 보다, 코드의 핵심만 추려서 보시는게 옳다고 봅니다.
소스와 이미지 파일을 같이 압축해서 올려놓았습니다.
이미지는 유니클로 소유입니다. 배움의 목적으로 사용되었습니다만,
다른 사이트에 상업적으로 사용하시다가 걸리면 혼~~~쭐납니다.
자세한 질문사항은
에서 마구마구 물어주세요 ^^
[CSS]
div#demo{overflow:auto;width:960px;margin:auto 0;text-align:center}
div.rollWrap{position:relative;width:960px;height:470px;overflow:hidden}
div.rollPhoto{position:absolute;top:0px;left:0px}
div.buttonWrap{display:none;margin:15px 0 0 0;width:960px}
div.thumPhoto{position:relative;float:left;margin-left:16px;cursor:pointer}
div.thumOver{position:absolute;top:-9px;left:0;width:106px;height:38px; background:url("./selecter.gif") no-repeat top center}
[HTML]
<div id="demo">
<div class="rollWrap">
<div class="rollPhoto">
<img src="./01.jpg" />
</div>
<div class="rollPhoto">
<img src="./02.jpg" />
</div>
<div class="rollPhoto">
<img src="./03.jpg" />
</div>
<div class="rollPhoto">
<img src="./04.jpg" />
</div>
<div class="rollPhoto">
<img src="./05.jpg" />
</div>
<div class="rollPhoto">
<img src="./06.jpg" />
</div>
<div class="rollPhoto">
<img src="./07.jpg" />
</div>
<div class="rollPhoto">
<img src="./08.jpg" />
</div>
</div>
<div class="buttonWrap">
<div class="thumPhoto">
<div></div>
<img src="./s01.gif" />
</div>
<div class="thumPhoto">
<div></div>
<img src="./s02.gif" />
</div>
<div class="thumPhoto">
<div></div>
<img src="./s03.gif" />
</div>
<div class="thumPhoto">
<div></div>
<img src="./s04.gif" />
</div>
<div class="thumPhoto">
<div></div>
<img src="./s05.gif" />
</div>
<div class="thumPhoto">
<div></div>
<img src="./s06.gif" />
</div>
<div class="thumPhoto">
<div></div>
<img src="./s07.gif" />
</div>
<div class="thumPhoto">
<div></div>
<img src="./s08.gif" />
</div>
</div>
<div class="underBar">
<img src="./underbar.gif" />
</div>
</div>
[SCRIPT]
<script>
var bwCur = "out"; //하단에 대한 마우스의 버튼 초기상태
var currentIdx = 0; //현재 보여지고 있는 인덱스
var move = 1; // 0: 자동이동 중단, 1: 자동이동
var currentOver; // 현재 오버된 하단버튼
$("#demo").hover(
function() {
bwCur = "over";
$(".buttonWrap").slideDown();
move = 0;
}, function() {
bwCur = "out";
move = 1;
setTimeout("hideBw(bwCur)",500);
}
);
function hideBw(bc) {
bwCur = bc;
if(bwCur == "out") {
$(".buttonWrap").slideUp();
}
}
$(".rollPhoto").each(function(index) {
var rLeft = 0;
$(this).css({
left:960*index
});
});
$(".thumPhoto").each(function(index) {
if(index == 0) {
$(this).css({
marginLeft:0
});
}
$(this).bind("mouseover mouseout click", function(event) {
if(event.type == "mouseover") {
currentIdx = $(this).index();
moveTo(currentIdx);
}
});
});
function moveTo(index) {
currentIdx = index;
if(currentIdx > 7) {
currentIdx = 0;
}
if(currentOver == undefined) {
currentOver = $(".thumPhoto").eq(0);
}
currentOver.children().eq(0).removeClass("thumOver");
currentOver = $(".thumPhoto").eq(currentIdx);
currentOver.children().eq(0).addClass("thumOver");
$(".rollPhoto").each(function(idx) {
$(this).stop(true).animate({
left:960*(idx-currentIdx)
},{
duration:1000,
easing:'easeOutExpo'
});
});
}
function moveNext(index,mv) {
move = mv;
if(move==1) {
currentIdx = index;
if(currentIdx > 7) {
currentIdx = 0;
}
currentIdx++;
moveTo(currentIdx);
}
}
setInterval("moveNext(currentIdx,move)",3000);
</script>
첨부파일
댓글 7개
13년 전
정말 못하시는게 없으시네요 ㅠ
gilynh
13년 전
지운아벗님? 여기서 이러시면 안됩니다.
못하는거 정말 많습니다.
강좌 열심히 잘 먹겠습니다. 우걱! 우걱! ^~^)/
못하는거 정말 많습니다.
강좌 열심히 잘 먹겠습니다. 우걱! 우걱! ^~^)/
13년 전
좋은 소스네요.
gilynh
13년 전
감사합니다^^
스위치79
12년 전
이거 정말 좋은 소스 같습니다.
12년 전
와우.. 정말 좋은 소스 입니다. 감사 합니다. 잘 쓸께요.
takumi22
12년 전
감사합니다
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 5530 | 13년 전 | 532 | ||
| 5529 | 13년 전 | 729 | ||
| 5528 | 13년 전 | 708 | ||
| 5527 | 13년 전 | 1019 | ||
| 5526 | 13년 전 | 1047 | ||
| 5525 | 13년 전 | 1813 | ||
| 5524 | 13년 전 | 686 | ||
| 5523 |
high8sky
|
13년 전 | 736 | |
| 5522 | 13년 전 | 3137 | ||
| 5521 | 13년 전 | 869 | ||
| 5520 |
즐거운상상을
|
13년 전 | 1127 | |
| 5519 | 13년 전 | 1502 | ||
| 5518 | 13년 전 | 954 | ||
| 5517 | 13년 전 | 1943 | ||
| 5516 | 13년 전 | 660 | ||
| 5515 |
순천홈페이지
|
13년 전 | 2810 | |
| 5514 | 13년 전 | 1165 | ||
| 5513 |
수야3019
|
13년 전 | 1495 | |
| 5512 | 13년 전 | 901 | ||
| 5511 | 13년 전 | 1057 | ||
| 5510 |
|
13년 전 | 1417 | |
| 5509 |
|
13년 전 | 1097 | |
| 5508 | 13년 전 | 1656 | ||
| 5507 | 13년 전 | 1540 | ||
| 5506 | 13년 전 | 704 | ||
| 5505 | 13년 전 | 2781 | ||
| 5504 |
물끄덩미끄덩
|
13년 전 | 946 | |
| 5503 |
후라보노보노
|
13년 전 | 1967 | |
| 5502 | 13년 전 | 863 | ||
| 5501 | 13년 전 | 1935 | ||
| 5500 | 13년 전 | 1809 | ||
| 5499 | 13년 전 | 1799 | ||
| 5498 | 13년 전 | 756 | ||
| 5497 |
레인보우1492
|
13년 전 | 1333 | |
| 5496 | 13년 전 | 1063 | ||
| 5495 |
jdjjun00
|
13년 전 | 2030 | |
| 5494 | 13년 전 | 892 | ||
| 5493 | 13년 전 | 983 | ||
| 5492 | 13년 전 | 1233 | ||
| 5491 | 13년 전 | 1082 | ||
| 5490 | 13년 전 | 874 | ||
| 5489 |
빨간망사챠챠
|
13년 전 | 2278 | |
| 5488 |
나태한개미
|
13년 전 | 1060 | |
| 5487 |
나태한개미
|
13년 전 | 1020 | |
| 5486 |
나태한개미
|
13년 전 | 2111 | |
| 5485 | 13년 전 | 1798 | ||
| 5484 | 13년 전 | 6530 | ||
| 5483 | 13년 전 | 1427 | ||
| 5482 |
Raincommunication
|
13년 전 | 763 | |
| 5481 |
|
13년 전 | 577 | |
| 5480 |
|
13년 전 | 990 | |
| 5479 | 13년 전 | 1034 | ||
| 5478 |
|
13년 전 | 879 | |
| 5477 | 13년 전 | 665 | ||
| 5476 | 13년 전 | 1111 | ||
| 5475 | 13년 전 | 1422 | ||
| 5474 | 13년 전 | 816 | ||
| 5473 | 13년 전 | 638 | ||
| 5472 | 13년 전 | 1121 | ||
| 5471 | 13년 전 | 1593 | ||
| 5470 | 13년 전 | 942 | ||
| 5469 |
BackToHeaven
|
13년 전 | 2217 | |
| 5468 |
멀티트리플
|
13년 전 | 1098 | |
| 5467 | 13년 전 | 725 | ||
| 5466 | 13년 전 | 1301 | ||
| 5465 | 13년 전 | 1404 | ||
| 5464 | 13년 전 | 1484 | ||
| 5463 | 13년 전 | 670 | ||
| 5462 | 13년 전 | 1399 | ||
| 5461 | 13년 전 | 1018 | ||
| 5460 | 13년 전 | 2539 | ||
| 5459 | 13년 전 | 1047 | ||
| 5458 |
프로프리랜서
|
13년 전 | 935 | |
| 5457 | 13년 전 | 796 | ||
| 5456 |
PHPㅡASP프로그래머
|
13년 전 | 1315 | |
| 5455 |
뭐먹고살지ㅠ
|
13년 전 | 843 | |
| 5454 | 13년 전 | 1594 | ||
| 5453 |
프리랜서클럽
|
13년 전 | 1184 | |
| 5452 | 13년 전 | 825 | ||
| 5451 | 13년 전 | 779 | ||
| 5450 | 13년 전 | 7289 | ||
| 5449 |
PHPㅡASP프로그래머
|
13년 전 | 827 | |
| 5448 |
DBDBDB
|
13년 전 | 665 | |
| 5447 | 13년 전 | 1932 | ||
| 5446 |
헬프데스크
|
13년 전 | 1794 | |
| 5445 | 13년 전 | 946 | ||
| 5444 |
Werbershinta
|
13년 전 | 663 | |
| 5443 | 13년 전 | 1329 | ||
| 5442 | 13년 전 | 1049 | ||
| 5441 | 13년 전 | 1163 | ||
| 5440 | 13년 전 | 3152 | ||
| 5439 | 13년 전 | 820 | ||
| 5438 |
ddokkani
|
13년 전 | 754 | |
| 5437 | 13년 전 | 2619 | ||
| 5436 | 13년 전 | 1015 | ||
| 5435 |
PHPㅡASP프로그래머
|
13년 전 | 833 | |
| 5434 |
돗단배123
|
13년 전 | 1609 | |
| 5433 | 13년 전 | 1763 | ||
| 5432 |
|
13년 전 | 917 | |
| 5431 | 13년 전 | 757 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기