2024-11-27

This commit is contained in:
2024-11-27 13:07:13 +09:00
parent a356a36eb0
commit 75cf69e82f
2 changed files with 45 additions and 1 deletions

View File

@@ -16,5 +16,8 @@ div {
## 트랜지션 완료 이벤트
```javascript
element.addEventListener('transitionend', function(propertyName, elapsedTime){}, true);
element.addEventListener('transitionend', function(event){
console.log(event.propertyName);
console.log(event.elapsedTime);
}, true);
```