Get the correct transition- or animation-end event.
bower install cssevents
npm install cssevents
import 'cssevents';
// or
import {transitionEnd, animationEnd} from 'cssevents';
document.querySelector('.selector').addEventListener(transitionEnd, e => {
// do something
});