일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 인스타그램
- .animate
- 예제
- 폐쇄형 SNS
- 저품질
- 안드로이드의 파편화
- Math.random
- P9
- 네이버 포스트
- 해저 데이터서버
- 1위 기업
- 후기영상
- 샤오미
- 구글 플레이
- 영상 만들기
- 정보 소유권
- 트위터
- jQuery
- 화훼이
- 크라우드 펀딩
- 수익성
- Stagefright
- 구글 이권다툼
- 데이터 센터
- 갤럭시 S7
- MI5
- 총판
- 안드로이드
- 클릭몬
- 플로팅 배너
Archives
- Today
- Total
IT & CODE 이야기
이미지를 x축 이동시키기 본문
물고기 움직이기
이번 예제는 jquery로 이미지의 위치를 제어하는 방법을 담은 예제입니다. 예제의 조건은 다음과 같습니다.- 물고기를 수평선 위에서 (왼쪽으로 이동)버튼을 누르면 왼쪽으로, (오른쪽으로 이동)버튼을 누르면 오른쪽으로 이동하게 한다.
- 키보드의 ←버튼을 누르면 왼쪽으로 20px, →버튼을 누르면 오른쪽으로 20px이동한다..
-
수평선은 width: 300px; height: 2px; background-color: red;
물고기는 position: relative; width:40px;이다.
물고기 사진의 src주소는 https://t1.daumcdn.net/cfile/tistory/2637484856B21E3332
아래는 예제를 완성시킨 모습입니다.
오른쪽 왼쪽 키보드로도 제어 가능!
이 예제의 코드
<style>
#pannel{}
#bar22{ width: 300px; height: 2px; background-color: red;}
#fish3{ position: relative; width:40px;}
#dropingSelection{ width: 300px; height: 300px;}
</style>
<div id="pannel">
<div id="dropingSelection"> </div>
<img src="https://t1.daumcdn.net/cfile/tistory/2637484856B21E3332" alt="물고기!" id="fish3">
<div id="bar22"></div>
</div>
<div>
<button id="btnBack">물고기 왼쪽</button><button id="btnStart22">물고기 오른쪽</button><br /><input type="button" name="name" value="여기를 누르고">오른쪽 왼쪽 키보드로도 제어 가능!
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript"></script>
<script>
var position = 0;
$(document).ready(function() {
$('#btnStart22').click(function(event) {
$('#fish3').animate({left:240}, 1000);
position = 240;
});
$('#btnBack').click(function(event) {
$('#fish3').animate({left:0}, 1000);
position = 0;
});
});
function moving3(){
var keycode = event.keyCode;
var fish3 = document.getElementById('fish3');
if(keycode == 39 && position<240){
position+=20;
}else if(keycode == 37 && position>0) {
position-=20;
}
console.log(position);
fish3.style.left=position.toString()+"px";
}
</script>
'CODE > JQuery' 카테고리의 다른 글
Math 클래스 예제(물고기 잡기 게임) (2) | 2016.02.19 |
---|---|
SetInterval과 clearInterval 활용 예제 (4) | 2016.02.17 |
갤러리를 배열하기 (0) | 2016.02.11 |
animate() 예제 (물고기 움직이기) (0) | 2016.02.08 |
형변환, setInterval 예제 (랜덤으로 색깔 바꾸기) (0) | 2016.02.06 |
Comments