-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslide.html
271 lines (209 loc) · 8.26 KB
/
slide.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<html>
<head>
<!-- css -->
<style type="text/css">
img {
margin: 0px;
padding: 0px;
border: none;
vertical-align: top;
}
div, li, a {
margin: 0px;
padding: 0px;
}
ol, ul {
margin: 0px;
padding: 0px;
list-style: none;
}
a:link, a:visited {
font-size: 1em;
color: #555555;
text-decoration: none;
}
a:hover, a:active {
font-size: 1em;
color: #CA3703;
text-decoration: underline;
}
#Photo-Data {
position: relative;
margin-top: 10px;
width: 400px;
height: 104px;
}
#Photo-Data #Photo-Wrapper {
position: relative;
left: 42px;
top: 17px;
width: 310px;
height: 71px;
overflow: hidden;
}
#Photo-Data #Photo-List {
position: absolute;
left:0px;
top:0px;
width: 525px;
}
#Photo-Data #Photo-List li {
float: left;
margin-right: 5px;
}
#Photo-Data #Photo-Prev {
position: absolute;
top: 30px;
left: 10px;
}
#Photo-Data #Photo-Next {
position: absolute;
top: 30px;
right: 10px;
}
</style>
</head>
<body>
<!-- 이미지 슬라이드 태그 영역 -->
<!-- //////////////////////////////////////////////////////////////////////////////////// -->
<div id="Photo-Data" style="valign:top;">
<a href="#" id="Photo-Prev" onclick="_right();return false;"><img src="/image/banner/banner_off_move01.gif" onmouseover="this.src='/image/banner/banner_on_move01.gif';" onmouseout="this.src='/image/banner/banner_off_move01.gif';"alt="이전" /></a>
<div id="Photo-Wrapper">
<ul id="Photo-List">
<li><a href="#"><img src="img/ba1.jpg" alt="[사진]1" width="100" height="33" /></a></li>
<li><a href="#"><img src="img/ba2.jpg" alt="[사진]2" width="100" height="33" /></a></li>
<li><a href="#"><img src="img/ba3.jpg" alt="[사진]3" width="100" height="33" /></a></li>
<li><a href="#"><img src="img/ba4.jpg" alt="[사진]4" width="100" height="33" /></a></li>
<li><a href="#"><img src="img/ba5.jpg" alt="[사진]5" width="100" height="33" /></a></li>
</ul>
</div>
<a href="#" id="Photo-Next" onclick="_left();return false;"><img src="/image/banner/banner_off_move02.gif" onmouseover="this.src='/image/banner/banner_on_move02.gif';" onmouseout="this.src='/image/banner/banner_off_move02.gif';" alt="다음" /></a>
</div>
<!-- //////////////////////////////////////////////////////////////////////////////////// -->
<script>
//<![CDATA[
//******************************************************
//DIRECTION (슬라이드 방향 설정)
//DELAY_TIME (대기 시간 설정)
//******************************************************
var Direction = "LEFT"; // LEFT | RIGHT
var DELAY_TIME = 1000; // 밀리세컨드 (1/1000)
//******************************************************
//초기 세팅
//******************************************************
var Photo_Wrapper = document.getElementById("Photo-Wrapper");
var Photo_List = document.getElementById("Photo-List");
LIs = Photo_Wrapper.getElementsByTagName('li');
//cellWidth = LIs[0].offsetWidth+5;
Photo_List.style.position ="absolute";
Photo_List.style.top = "0px";
Photo_List.style.left = "0px";
//이미지의 갯수(LIs.length)가 3개 이하이면 이미지를 추가해준다.
//이미지를 연속적으로 슬라이딩 하기 위해서는 LEFT 이동시
//맨 앞의 이미지 두개를 맨뒤로 이동시켜야 하기 때문에 3개 이하로 셀렉트 했을경우
//빈 공간이 보이게 된다.
//******************************************************
//초기 실행
//******************************************************
// 나머지는 js 파일에서 불러옴.
//******************************************************
//LEFT MOVE
//******************************************************
function _left(){
Direction="LEFT";
final_x = -210;
var elem = document.getElementById("Photo-List");
//슬라이드 진행중일 경우 클리어 시킴..
if(elem.moving) {
clearTimeout(elem.moving);
moveSlideShow("Photo-List",final_x,0,10);
}
moveSlideShow("Photo-List",final_x,0,10);
}
//******************************************************
//RIGHT MOVE
//******************************************************
function _right(){
Direction = "RIGHT";
final_x = 0;
var elem = document.getElementById("Photo-List");
if(elem.moving) {
clearTimeout(elem.moving);
moveSlideShow("Photo-List",final_x,0,10);
}
moveSlideShow("Photo-List",final_x,0,10);
}
//******************************************************
//SLIDE 처리 메소드
//실제로 이미지를 애니메이션 처리하는 메서드..
//setTimeout() 메서드로 단위px 만큼 반복적으로 이동시킨다.
//지정된위치(final_X) 에 도착하면
//반복적으로 움직이도록 하기 위하여
//맨 앞, 또는 맨뒤의 엘리먼트를 잘라내어
//맨 앞, 또는 맨뒤에 붙여준다.
//******************************************************
var moveSlideShow = function(elementId,final_x,final_y,interval){
var elem = document.getElementById(elementId);
var xPos = parseInt(elem.style.left);
var yPos = parseInt(elem.style.top);
//xPos 와 final_x 같아지면 엘리먼트를 뒤로 이동시킨다.
if(xPos == final_x){
if(Direction=="LEFT"){
attachLeft(elem); //엘리먼트를 return;
}else if(Direction=="RIGHT"){
attachRIGHT(elem); //엘리먼트를 이동시킨다.
return;
}
}
//슬라이드를 종료한 후
//위치를 이동시킨다.
if(elem.moving) clearTimeout(elem.moving);
// 이미지 슬라이드 무빙 가속
// 이 부분이 없으면 이미지가 같은 속도로 움직인다.
if((xPos == final_x) && (yPos == final_y)){
return true;
}
if(xPos < final_x){
var dist = Math.ceil((final_x - xPos)/10);
xPos = xPos + dist;
}
if(xPos > final_x){
var dist = Math.ceil((xPos - final_x)/10);
xPos = xPos - dist ;
}
elem.style.left = xPos +"px";
var repeat = "moveSlideShow('Photo-List',"+final_x+","+final_y+","+interval+")";
elem.moving = setTimeout(repeat,interval);
}
//******************************************************
//좌측이동시 엘리먼트 제거,추가,위치설정
//******************************************************
var attachLeft = function(elem){
var UL= elem; //UL
var LIs = UL.getElementsByTagName('li');
var li_1 = LIs[0].cloneNode(true);
LIs[0].parentNode.appendChild(li_1);
LIs[0].parentNode.removeChild(LIs[0]);
li_1 = LIs[0].cloneNode(true);
LIs[0].parentNode.appendChild(li_1);
LIs[0].parentNode.removeChild(LIs[0]);
UL.style.left = "0px";
}
//******************************************************
//우측이동시 엘리먼트 제거,추가,위치설정
//******************************************************
var attachRIGHT = function(elem){
var UL= elem; //UL
var LIs = UL.getElementsByTagName('li');
var li_1 = LIs[LIs.length-1].cloneNode(true);
LIs[0].parentNode.insertBefore(li_1,LIs[0]);
LIs[0].parentNode.removeChild(LIs[LIs.length-1]);
li_1 = LIs[LIs.length-1].cloneNode(true);
LIs[0].parentNode.insertBefore(li_1,LIs[0]);
LIs[0].parentNode.removeChild(LIs[LIs.length-1]);
UL.style.left = "-210px";
}
//]]>
</script>
</body>
</html>