Transitioned properties
by stopsatgreen
HTML
<h1>Hello</h1>
CSS
h1 { transition: 1s; }
body:hover h1 { font-size: 400%; }
JavaScript
document.addEventListener('transitionend', function(e) {
console.log(e.propertyName);
});
by stopsatgreen
<h1>Hello</h1>
h1 { transition: 1s; }
body:hover h1 { font-size: 400%; }
document.addEventListener('transitionend', function(e) {
console.log(e.propertyName);
});