Skip to content

Instantly share code, notes, and snippets.

@fbedussi
Last active September 18, 2017 10:02
Show Gist options
  • Save fbedussi/09e0e688c108a7ca53c3 to your computer and use it in GitHub Desktop.
Save fbedussi/09e0e688c108a7ca53c3 to your computer and use it in GitHub Desktop.
Return the transition duration (in millisecond) for the specified property on the specified element
/**
* @desc returns the duration in milliseconds of a CSS transition on the element $el for the given property
* @param {type} $el
* @param {type} property = 'transform'
* @returns {type}
*/
function getTransitionDuration($el, property = 'transform') {
return $el
.css('transition')
.split(',')
.filter((transition) => transition.match(new RegExp(property + '|all')))
.reduce((acc, i) => {
var time = [].concat(i.match(/\d+\.\d+s/)).reduce((acc, i) => i, 0);
if (!time) {
return 0;
}
return parseFloat(time) * 1000;
}, 0)
;
}
export default getTransitionDuration;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment