Have this CSS code:
<style>
.odometer{font-size: 180px; line-height: 100px;}
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-theme-minimal.odometer-animating-up .odometer-ribbon-inner,
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner,
.odometer.odometer-theme-minimal.odometer-animating-down.odometer-animating .odometer-ribbon-inner
{transition-duration: 3s !important}
</style>
Need to change the transition-duration on runtime, and of course, keep the !important flag.
Read many articles here with code examples, but couldn't get any one of them to work, maybe b/c of the nested CSS class structure.
appreciate the tip !