Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Math.ceil()
- selectedIndex
- toFixed()
- 파일질라설치
- Math.floor()
- calc.minus
- addClass
- excel중복체크
- 1521
- 증가값
- 주석이 먹히지 않을 때
- Math.round()
- selectoptions
- removeClass
- 소스트리인증실패
- ctrl+/
- hide
- 파일질라설치오류
- FileZilla설치
- calc.plus
- Excel
- Git
- Parent
- FileZilla다운로드
- index %
- SUB함수
- is_check
- 파일질라다운로드
- push오류
- slideUp
Archives
- Today
- Total
잡동사니에도 사랑을
[21.10.15] exam04(05_jQueryAnimation) 본문
728x90
반응형
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style type="text/css">
#thumb {
padding: 0;
margin: 0;
list-style: none;
width: 100px;
float: left;
}
#thumb li {
padding: 5px 10px;
}
#thumb img {
width: 80px;
height: 80px;
}
#view {
padding: 5px 0;
width: 360px;
height: 270px;
float: left;
}
#view img {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<ul id="thumb">
<li><a href="../img/img5.PNG" class="item">
<img src="../img/img5.PNG"></a></li>
<li><a href="../img/img9.PNG" class="item">
<img src="../img/img9.PNG"></a></li>
<li><a href="../img/img7.PNG" class="item">
<img src="../img/img7.PNG"></a></li>
</ul>
<div id="view">
<img src="../img/img8.PNG" /><!-- 큰 이미지 -->
</div>
<script type="text/javascript" src="http://code.jquery.com/jquery-3.6.0.min.js"></script>
<script type="text/javascript">
$(function(){
$('.item:eq(0)').click(function(){
var image = $(this).attr('href');
$('#view').hide(500, function(){
$('view img').attr('src', image);
$(this).show(300);
});
return false;
});
$('.item:eq(1)').click(function(){
var image = $(this).attr('href');
$('#view').hide(500, function(){
$('view img').attr('src', image);
$(this).show(300);
});
return false;
});
});
</script>
</body>
</html>
<!--
- 모든 애니메이션 관련 함수들은 시간값 외에 두 번째 파라미터로 함수를 지정할 수 있다.
- 이 함수들에 애니메이션 처리가 종료된 후에 동작할 내용을 담는다.
예) show(time [, function() {......}]);
-->
728x90
반응형
'JAVA_EE > JQuery' 카테고리의 다른 글
[21.10.18] exam01(06_jQueryDOM) - 문서 객체 모델(DOM, Document Object Model) 예제문 (0) | 2021.10.18 |
---|---|
[21.10.15] exam05(05_jQueryAnimation) (0) | 2021.10.15 |
[21.10.15] exam03(05_jQueryAnimation) (0) | 2021.10.15 |
[21.10.15] exam02(05_jQueryAnimation) (0) | 2021.10.15 |
[21.10.15] exam01(05_jQueryAnimation) (0) | 2021.10.15 |