티스토리 뷰
animate 메서드를 보면 css의 움직임 요소, duration, easing, complete 가 있다. 이것들을 모두 적용해 보면 다음과 같다.
1 |
$(".img00_05").stop().delay(1000).animate({opacity:1,top:_posyArr[_activeNum][5]},_speed,"easeOutExpo",function(){_isPlay = false;}); |
딜레이 : delay(1000)
easing : "easeOutExpo", "easeOutElastic" 등...
easing 속성은 jQuery Easing Plugin (version 1.3)를 다운(jquery.easing.1.3.js 파일첨부) 받아야 하며,
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script> 해서 쓰게된다.
http://gsgd.co.uk/sandbox/jquery/easing/ 에서 움직임을 볼 수 있다.
'■ 프론트엔드 ■ > jQuery' 카테고리의 다른 글
.offset() - 좌표찾기, 좌표셋팅 (0) | 2013.10.13 |
---|---|
.val() - 체크박스, 인풋박스 값가져오기 (0) | 2013.10.13 |
position() - 상대좌표 구하기 (0) | 2013.10.13 |
.hide() - 요소감추기 (0) | 2013.10.13 |
.show() - 요소보이기 (0) | 2013.10.13 |
댓글