728x90
-개발환경-
IDE : Eclipse IDE for Enterprise Java Developers ver-2020-06 (4.16.0) Tomcat : Tomcat v8.0 Server JQuery : jquery-3.6.0.min.js |
-설정-
설정에는 두가지 방법이 있는데 , |
-jquery13_CyclePlugin.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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.cycle/3.0.3/jquery.cycle.all.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#shuffle').cycle({
fx: 'shuffle',
easing: 'easeOutBack',
delay: -4000
});
});
</script>
</head>
<body>
<div id="shuffle">
<img src="./images/img01.jpg"/>
<img src="./images/img02.jpg"/>
<img src="./images/img03.jpg"/>
<img src="./images/img04.jpg"/>
<img src="./images/img05.jpg"/>
</div>
</body>
</html>
|
cs |
더보기
-Description
9 : Cycle plugin 의 CDN,
이미지를 자동으로 넘겨주는 cycle 플러그인
cycle 플러그인 효과를 확인해 볼 수 있는 API 사이트=> http://malsup.com/jquery/cycle/
11 : onload
-요약-
-마침글-
단순문법공부는 boring하다..
인용
'21년이전 > 국비-JSP' 카테고리의 다른 글
MergeInterval (0) | 2021.03.29 |
---|---|
Jquery-요소(태그)추가 (0) | 2021.03.29 |
Jquery- class 추가 및 제거 (0) | 2021.03.29 |
Jquery-EasingFlug 이용해보기 (0) | 2021.03.29 |
Jquery-특수효과적용2 (0) | 2021.03.29 |