Actually the subject is pretty explanatory. But to clarify, I am curious of several things:
Is there a way - not to disable - but to pause the property tran
1) You can use the animation-play-state
CSS attribute, and toggle between
animation-play-state:running
, and animation-play-state:paused
https://developer.mozilla.org/en-US/docs/Web/CSS/animation-play-state
2) The short answer is yes. Whichever property you read halfway through your transition (lets say height
), will return the current value at the moment queried.