In my webpage, I need to handled changes using JavaSCript when transform property is applied to a div tag. My approach is using eventListeners. But I am not able to find out what event gets triggered when a div tag is scaled.
// html ement
<div id='my-container'> ... some conetent </div>
// applying CSS style by other modules using javaScript
document.getElementById('my-container').style.transform ='scale(0.8,0.8)'
// My JS code to handled the support 'my-container' against scale css
document.getElementById('my-container').addEventListener('??????',console.log);
Please let me know is there any event gets triggered after scaling the element.
Or do I need to use any other way to handle this scenario?
Note: tried animationstart, animationend, transitionend events listeners