[JS]transitionend 이벤트

jini.choi·2024년 2월 15일
0

JavaSctipt-입문

목록 보기
10/10

transitionedn이벤트란?

transitionend 이벤트는 CSS transition 이 완료되면 발생한다.
transition 속성이 제거되거나 display가 none으로 설정된 경우와 같이 완료 전에 transition이 제거된 경우에는 이벤트가 생성되지 않는다.

transitionend 사용할 시 {once: true} 는 필수, 없을시 이벤트 반복되어 망가진다.
({once: true}을 안했을 때 인터렉션 오류 발생)

boxInner8.addEventListener("transitionend", handleClickTransitionendRemove, {
    once: true,
  });
profile
개발짜🏃‍♀️

0개의 댓글