gshn

유니클로 슬라이드 간략버전

· 2012-10-09 (화) 11:41:04 · 5185 · 7
01.png
※ 예전에 한번 같은걸 올렸던 적이 있습니다.
홈페이지 리뉴얼하면서 작업했던 것들 싹 다 삭제했는데..
최근 통계를 보니깐 그 때 올렸던 링크 타고 오시는 분이 엄청 많으시더군요-_-;;
그래서 다시 올려 드립니다.^^;;


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>

첨부파일

01.png (701 KB)
0회 2012-10-09 11:41
|

댓글 7개

2012-10-10 (수) 14:31:19
정말 못하시는게 없으시네요 ㅠ
지운아벗님? 여기서 이러시면 안됩니다.
못하는거 정말 많습니다.

강좌 열심히 잘 먹겠습니다. 우걱! 우걱! ^~^)/
좋은 소스네요.
감사합니다^^
2013-02-13 (수) 15:55:00
이거 정말 좋은 소스 같습니다.
와우.. 정말 좋은 소스 입니다. 감사 합니다. 잘 쓸께요.
감사합니다
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
12-11-22 조회 4,540
12-11-22 조회 6,018
12-11-22 조회 5,849
12-11-22 조회 5,074
12-11-22 조회 8,303
12-11-21 조회 5,799
12-11-21 조회 8,391
12-11-20 조회 4,506
12-11-20 조회 2.4만
12-11-19 조회 3,716
12-11-19 조회 4,252
12-11-19 조회 1.9만
12-11-18 조회 5,137
12-11-16 조회 3,916
12-11-16 조회 6,280
12-11-16 조회 4,048
12-11-16 조회 4,192
12-11-15 조회 3,660
12-11-15 조회 5,438
12-11-15 조회 4,339
12-11-15 조회 3,576
12-11-14 조회 3,302
12-11-14 조회 1만
12-11-14 조회 4,831
12-11-13 조회 3,805
12-11-13 조회 3,681
12-11-12 조회 5,363
12-11-12 조회 3,827
12-11-11 조회 2.2만
12-11-09 조회 5,311
12-11-09 조회 5,494
12-11-09 조회 7,406
12-11-08 조회 4,745
12-11-06 조회 3,578
12-11-06 조회 3,773
12-11-06 조회 1.9만
12-11-05 조회 3,591
12-11-05 조회 4,551
12-11-05 조회 4,108
12-11-05 조회 3,996
12-11-04 조회 3,925
12-11-03 조회 4,033
12-11-03 조회 2.6만
12-11-02 조회 5,012
12-11-02 조회 3.1만
12-11-01 조회 5,016
12-11-01 조회 2.5만
12-10-30 조회 8,212
12-10-30 조회 3,708
12-10-29 조회 3,661
12-10-29 조회 5,078
12-10-29 조회 3,820
12-10-29 조회 4,693
12-10-28 조회 3,901
12-10-26 조회 3,749
12-10-26 조회 9,641
12-10-26 조회 8,000
12-10-25 조회 3,886
12-10-25 조회 3,933
12-10-25 조회 7,980
12-10-24 조회 9,374
12-10-23 조회 3,927
12-10-23 조회 3,209
12-10-23 조회 3,597
12-10-23 조회 4,664
12-10-22 조회 8,382
12-10-21 조회 3,924
12-10-20 조회 4,553
12-10-19 조회 4,250
12-10-19 조회 3,202
12-10-18 조회 4,020
12-10-18 조회 3,486
12-10-18 조회 3,342
12-10-17 조회 9,131
12-10-17 조회 3,609
12-10-16 조회 3,284
12-10-16 조회 5,465
12-10-16 조회 3,937
12-10-16 조회 6,218
12-10-16 조회 4,123
12-10-15 조회 3,713
12-10-15 조회 3,253
12-10-15 조회 3,218
12-10-14 조회 3,543
12-10-13 조회 3,648
12-10-12 조회 4,402
12-10-12 조회 3,731
12-10-11 조회 4,927
12-10-11 조회 3,797
12-10-10 조회 6,946
12-10-10 조회 6,224
12-10-10 조회 7,733
12-10-10 조회 1만
12-10-10 조회 5,499
12-10-10 조회 4,895
12-10-10 조회 3,259
12-10-09 조회 5,739
12-10-09 조회 3,454
12-10-09 조회 7,164
12-10-09 조회 5,186