css transition으로 애니메이션하게 되면 애니메이션 종료 이벤트가 꼭 필요한 상황이 많이 생긴다.
그래서 간편하게 jquery로 콜백함수를 만들 수 있다.

let events = 'webkitTransitionEnd otransitionend oTransitionEnd msTransitionEnd transitionend';
$element.on(events, function(e) {
	console.log('Animation end');
});

메타데이터

조회수
1751
좋아요
25

0개의 댓글

등록된 댓글이 없습니다.